copyWith method

  1. @override
CircleNowIndicatorShape copyWith({
  1. Color? color,
  2. double? radius,
})
override

Implementation

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