SwitchDesign constructor

const SwitchDesign({
  1. Color color = Colors.black,
  2. Color text = Colors.white,
})

Implementation

const SwitchDesign({
  this.color = Colors.black,
  this.text = Colors.white,
});