KinProgress.linear constructor

const KinProgress.linear({
  1. Key? key,
  2. double? value,
  3. Color? color,
  4. Color? trackColor,
  5. double strokeWidth = 4,
})

Implementation

const KinProgress.linear({
  super.key,
  this.value,
  this.color,
  this.trackColor,
  this.strokeWidth = 4,
}) : _type = _KinProgressType.linear;