copyWith method
Implementation
NowIndicatorStyle copyWith({
NowIndicatorShape? shape,
Color? lineColor,
double? lineWidth,
}) {
return NowIndicatorStyle.raw(
shape: shape ?? this.shape,
lineColor: lineColor ?? this.lineColor,
lineWidth: lineWidth ?? this.lineWidth,
);
}