ToggleIconStyle constructor

const ToggleIconStyle({
  1. double? size,
  2. Color? backColor,
  3. double? backOpacity,
  4. Color? color,
  5. double? opacity,
  6. double? scale,
})

Create a style to be applied to ToggleIcon widget

Implementation

const ToggleIconStyle({
  this.size,
  this.backColor,
  this.backOpacity,
  this.color,
  this.opacity,
  this.scale,
});