Appearance constructor

Appearance({
  1. required String language,
  2. required String themeColor,
  3. required String primaryColor,
  4. required String secondaryColor,
  5. required String tertiaryColor,
  6. required String logoUrl,
})

Creates a new instance of Appearance with the given parameters.

Implementation

Appearance({
  required this.language,
  required this.themeColor,
  required this.primaryColor,
  required this.secondaryColor,
  required this.tertiaryColor,
  required this.logoUrl,
});