indicator method

Widget indicator({
  1. double? value,
  2. Color? color,
})

Implementation

Widget indicator({double? value, Color? color}) => CircularProgressIndicator(
        strokeWidth: 1, color: color ?? foregroundColor, value: value)
    .size(width: 24, height: 24);