Options constructor Null safety
- {required String appId,
- bool autoRequesting = true,
- bool debugLogging = false,
- LoggingLevel? loggingLevel}
Implementation
Options(
{required this.appId,
this.autoRequesting = true,
this.debugLogging = false,
this.loggingLevel})
: assert(appId.isNotEmpty);