RenderCircularProgressIndicator constructor

RenderCircularProgressIndicator({
  1. required String frame,
  2. required Color color,
  3. Color? backgroundColor,
  4. String? label,
})

Implementation

RenderCircularProgressIndicator({
  required String frame,
  required Color color,
  Color? backgroundColor,
  String? label,
})  : _frame = frame,
      _color = color,
      _backgroundColor = backgroundColor,
      _label = label;