copyWith method
Implementation
TimeIndicatorStyle copyWith({TextStyle? textStyle, String? label}) {
return TimeIndicatorStyle.raw(
textStyle: textStyle ?? this.textStyle,
label: label ?? this.label,
);
}
TimeIndicatorStyle copyWith({TextStyle? textStyle, String? label}) {
return TimeIndicatorStyle.raw(
textStyle: textStyle ?? this.textStyle,
label: label ?? this.label,
);
}