indicator method

Widget indicator({
  1. double? value,
  2. Color? color,
  3. double? strokeWidth,
  4. Size? size,
})

Implementation

Widget indicator(
    {double? value, Color? color, double? strokeWidth, Size? size}) {
  return context.indicator(
      value: value, color: color, strokeWidth: strokeWidth, size: size);
}