ProgressCircle constructor

ProgressCircle(
  1. ValueChanged<ProgressCircleState> changeState, {
  2. Color? color,
  3. EdgeInsets? margin,
})

Implementation

ProgressCircle(this.changeState, {
  Color? color,
  EdgeInsets? margin}) {
  this.color = color;
  this.margin = margin;
}