Branding constructor

Branding({
  1. String? background,
  2. String? onBackground,
  3. String? onBackgroundSecondary,
  4. String? onBackgroundTertiary,
  5. String? primary,
  6. String? onPrimary,
  7. String? secondary,
  8. String? onSecondary,
  9. String? cameraOverlay,
  10. String? onCameraOverlay,
  11. String? outline,
  12. String? error,
  13. String? success,
  14. int? buttonRadius,
  15. Fonts? fonts,
})

Creates a Branding object.

Implementation

Branding(
    {AssetImage? logo,
    String? background,
    String? onBackground,
    String? onBackgroundSecondary,
    String? onBackgroundTertiary,
    String? primary,
    String? onPrimary,
    String? secondary,
    String? onSecondary,
    String? cameraOverlay,
    String? onCameraOverlay,
    String? outline,
    String? error,
    String? success,
    int? buttonRadius,
    Fonts? fonts}) {
  this.logo = logo;
  this.background = background;
  this.onBackground = onBackground;
  this.onBackgroundSecondary = onBackgroundSecondary;
  this.onBackgroundTertiary = onBackgroundTertiary;
  this.primary = primary;
  this.onPrimary = onPrimary;
  this.secondary = secondary;
  this.onSecondary = onSecondary;
  this.cameraOverlay = cameraOverlay;
  this.onCameraOverlay = onCameraOverlay;
  this.outline = outline;
  this.error = error;
  this.success = success;
  this.buttonRadius = buttonRadius;
  this.fonts = fonts;
}