RefreshIndicatorStyle constructor
Implementation
factory RefreshIndicatorStyle({
FFColor? indicatorColor,
FFColor? backgroundColor,
$core.double? strokeWidth,
}) {
final result = create();
if (indicatorColor != null) result.indicatorColor = indicatorColor;
if (backgroundColor != null) result.backgroundColor = backgroundColor;
if (strokeWidth != null) result.strokeWidth = strokeWidth;
return result;
}