copyWith method

TimeIndicatorStyle copyWith({
  1. TextStyle? textStyle,
  2. String? label,
})

Implementation

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