LightMode constructor

LightMode({
  1. required PrimaryColor primaryColor,
  2. required String indicatorColor,
  3. required PrimaryColor secondaryColor,
  4. required PrimaryColor label,
  5. required PrimaryColor alert,
  6. required Button button,
})

Implementation

LightMode({
  required this.primaryColor,
  required this.indicatorColor,
  required this.secondaryColor,
  required this.label,
  required this.alert,
  required this.button,
});