DsBrandToggle constructor

const DsBrandToggle({
  1. Key? key,
  2. required DsBrand brand,
  3. required ValueChanged<DsBrand> onChanged,
  4. double sizedBoxDimension = 48,
  5. double iconSize = 22,
})

Implementation

const DsBrandToggle({
  super.key,
  required this.brand,
  required this.onChanged,
  this.sizedBoxDimension = 48,
  this.iconSize = 22,
});