AppConfig constructor

const AppConfig({
  1. String? appId,
  2. String? appSecret,
  3. String? appChannel,
  4. String? crashlyticsDomain,
  5. Size? designSize,
  6. Color? statusBarColor,
  7. LogConfig? logConfig,
  8. ToastTheme? toastTheme,
  9. LoadingTheme? loadingTheme,
  10. ErrorWidgetBuilder? errorWidgetBuilder,
  11. Map<String, dynamic> extra = const {},
})

Implementation

const AppConfig({
  this.appId,
  this.appSecret,
  this.appChannel,
  this.crashlyticsDomain,
  //
  this.designSize,
  this.statusBarColor,
  this.logConfig,
  this.toastTheme,
  this.loadingTheme,
  this.errorWidgetBuilder,
  this.extra = const {},
});