ArcProgressLineStyle constructor

const ArcProgressLineStyle({
  1. Color? color,
  2. double? thickness,
  3. Color? backgroundColor,
})

Implementation

const ArcProgressLineStyle({
  Color? color,
  double? thickness,
  this.backgroundColor,
})  : color = color ?? const Color(0xFFFFFFFF),
      thickness = thickness ?? 2;