NERoomKitOptions constructor Null safety

NERoomKitOptions(
  1. {required String appKey,
  2. Map<String, String>? extras}
)

Implementation

NERoomKitOptions({
  required this.appKey,
  Map<String, String>? extras,
}) : extras = extras != null ? Map.from(extras) : const {};