NERoomKitOptions constructor Null safety

NERoomKitOptions(
  1. {required String appKey,
  2. bool useAssetServerConfig = false,
  3. NEServerConfig? serverConfig,
  4. Map<String, String>? extras,
  5. bool reuseIM = false}
)

Implementation

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