FFPullToRefreshStyle constructor

FFPullToRefreshStyle({
  1. RefreshIndicatorStyle? refreshIndicatorStyle,
})

Implementation

factory FFPullToRefreshStyle({
  RefreshIndicatorStyle? refreshIndicatorStyle,
}) {
  final result = create();
  if (refreshIndicatorStyle != null)
    result.refreshIndicatorStyle = refreshIndicatorStyle;
  return result;
}