copyWith method

  1. @useResult
FCircularProgressStyle copyWith({
  1. IconThemeData? iconStyle,
  2. FCircularProgressMotion motion(
    1. FCircularProgressMotion motion
    )?,
})

Returns a copy of this FCircularProgressStyle with the given properties replaced.

Consider using the CLI to generate a style.

Parameters

Implementation

@useResult
FCircularProgressStyle copyWith({
  IconThemeData? iconStyle,
  FCircularProgressMotion Function(FCircularProgressMotion motion)? motion,
}) => FCircularProgressStyle(
  iconStyle: iconStyle ?? this.iconStyle,
  motion: motion != null ? motion(this.motion) : this.motion,
);