BashBoardWidget constructor

BashBoardWidget(
  1. double diameter, {
  2. double value = 0.0,
  3. Color rightColor = Colors.blueAccent,
  4. String label = '',
  5. Color color = Colors.transparent,
  6. double strokeWidth = 10.0,
})

Implementation

BashBoardWidget(this.diameter,
    {this.value = 0.0,
    this.rightColor = Colors.blueAccent,
    this.label = '',
    Color color = Colors.transparent,
    double strokeWidth = 10.0})
    : super(
          color: color,
          width: diameter,
          height: diameter,
          strokeWidth: strokeWidth);