NERoomKitOptions constructor

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

Implementation

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