RefreshIndicatorStyle constructor

RefreshIndicatorStyle({
  1. FFColor? indicatorColor,
  2. FFColor? backgroundColor,
  3. double? strokeWidth,
})

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;
}