MiddleIndicatorOption constructor

const MiddleIndicatorOption({
  1. double length = 60.0,
  2. Color fillColor = const Color(0xFF0A59F7),
  3. bool showTimeText = true,
  4. TextStyle timeTextStyle = const TextStyle(color: Color(0xFF0A59F7), fontSize: 12.0, fontWeight: FontWeight.bold),
})

Implementation

const MiddleIndicatorOption({
  this.length = 60.0,
  this.fillColor = const Color(0xFF0A59F7),
  this.showTimeText = true,
  this.timeTextStyle = const TextStyle(
    color: Color(0xFF0A59F7),
    fontSize: 12.0,
    fontWeight: FontWeight.bold,
  ),
});