PrizorSdkParams constructor

const PrizorSdkParams({
  1. required Environment? environment,
  2. required String appId,
  3. required String secret,
  4. required String appName,
  5. required Color accentColor,
  6. required Color accentForegroundColor,
  7. required User user,
  8. Uri? appBrand,
  9. Color? splashForegroundColor,
  10. Color? splashBackgroundColor,
  11. Sac? sac,
  12. bool isRootRoute = false,
  13. String titleRoute = '',
})

Implementation

const PrizorSdkParams({
  required this.environment,
  required this.appId,
  required this.secret,
  required this.appName,
  required this.accentColor,
  required this.accentForegroundColor,
  required this.user,
  this.appLogo,
  this.appBrand,
  this.splashForegroundColor,
  this.splashBackgroundColor,
  this.sac,
  this.isRootRoute = false,
  this.titleRoute = '',
});