ThemeParameters constructor

ThemeParameters({
  1. required int backgroundColor,
  2. required int secondaryBackgroundColor,
  3. required int headerBackgroundColor,
  4. required int bottomBarBackgroundColor,
  5. required int sectionBackgroundColor,
  6. required int sectionSeparatorColor,
  7. required int textColor,
  8. required int accentTextColor,
  9. required int sectionHeaderTextColor,
  10. required int subtitleTextColor,
  11. required int destructiveTextColor,
  12. required int hintColor,
  13. required int linkColor,
  14. required int buttonColor,
  15. required int buttonTextColor,
})

Implementation

ThemeParameters({
  required this.backgroundColor,
  required this.secondaryBackgroundColor,
  required this.headerBackgroundColor,
  required this.bottomBarBackgroundColor,
  required this.sectionBackgroundColor,
  required this.sectionSeparatorColor,
  required this.textColor,
  required this.accentTextColor,
  required this.sectionHeaderTextColor,
  required this.subtitleTextColor,
  required this.destructiveTextColor,
  required this.hintColor,
  required this.linkColor,
  required this.buttonColor,
  required this.buttonTextColor,
});