ControlStyle constructor

const ControlStyle({
  1. Color backgroundColor = Colors.white,
  2. Color shadowColor = Colors.blueAccent,
  3. Color glowColor = Colors.blueAccent,
  4. ControlTickStyle tickStyle = const ControlTickStyle(),
})

Implementation

const ControlStyle({
  this.backgroundColor = Colors.white,
  this.shadowColor = Colors.blueAccent,
  this.glowColor = Colors.blueAccent,
  this.tickStyle = const ControlTickStyle(),
});