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