Appearance constructor

Appearance({
  1. required String primaryColor,
  2. required String captionFontColor,
  3. required String captionBackgroundColor,
  4. required String logoDestinationUrl,
  5. required int fontSize,
  6. required int captionFontSize,
})

Implementation

Appearance({
  required this.primaryColor,
  required this.captionFontColor,
  required this.captionBackgroundColor,
  required this.logo,
  required this.logoDestinationUrl,
  required this.fontSize,
  required this.captionFontSize,
});