copyWith method
Implementation
@override
CircleNowIndicatorShape copyWith({Color? color, double? radius}) {
return CircleNowIndicatorShape(
color: color ?? this.color,
radius: radius ?? this.radius,
);
}
@override
CircleNowIndicatorShape copyWith({Color? color, double? radius}) {
return CircleNowIndicatorShape(
color: color ?? this.color,
radius: radius ?? this.radius,
);
}