ToggleStyle constructor

const ToggleStyle({
  1. Color activeColor = Colors.white,
  2. Color inactiveColor = Colors.white,
  3. Color activeToggleColor = Colors.blue,
  4. Color inactiveToggleColor = Colors.grey,
})

Implementation

const ToggleStyle({
  this.activeColor = Colors.white,
  this.inactiveColor = Colors.white,
  this.activeToggleColor = Colors.blue,
  this.inactiveToggleColor = Colors.grey,
});