ThemeParameters constructor

const ThemeParameters({
  1. required int backgroundColor,
  2. required int secondaryBackgroundColor,
  3. required int textColor,
  4. required int hintColor,
  5. required int linkColor,
  6. required int buttonColor,
  7. required int buttonTextColor,
})

Contains parameters of the application theme

Implementation

const ThemeParameters({
  required this.backgroundColor,
  required this.secondaryBackgroundColor,
  required this.textColor,
  required this.hintColor,
  required this.linkColor,
  required this.buttonColor,
  required this.buttonTextColor,
});