Options constructor

Options({
  1. required String appId,
  2. bool autoRequesting = true,
  3. bool debugLogging = false,
  4. LoggingLevel? loggingLevel,
})

Implementation

Options(
    {required this.appId,
    this.autoRequesting = true,
    this.debugLogging = false,
    this.loggingLevel})
    : assert(appId.isNotEmpty);