DashboardTheme constructor

const DashboardTheme({
  1. required Color backgroundColor,
  2. required Color textColor,
  3. required Color warningColor,
  4. required Color errorColor,
  5. required Color chartLineColor,
  6. required Color chartFillColor,
})

Creates a new dashboard theme

Implementation

const DashboardTheme({
  required this.backgroundColor,
  required this.textColor,
  required this.warningColor,
  required this.errorColor,
  required this.chartLineColor,
  required this.chartFillColor,
});