copyWith method
TimeScaleOption
copyWith({
- double? scaleLineWidth,
- double? scaleLineHeight,
- Color? scaleTextColor,
- Color? scaleLineColor,
- ScaleAlignment? scaleAlignment,
- double? scaleTextSize,
- FontWeight? scaleTextWeight,
Implementation
TimeScaleOption copyWith({
double? scaleLineWidth,
double? scaleLineHeight,
Color? scaleTextColor,
Color? scaleLineColor,
ScaleAlignment? scaleAlignment,
double? scaleTextSize,
FontWeight? scaleTextWeight,
}) {
return TimeScaleOption(
scaleLineWidth: scaleLineWidth ?? this.scaleLineWidth,
scaleLineHeight: scaleLineHeight ?? this.scaleLineHeight,
scaleTextColor: scaleTextColor ?? this.scaleTextColor,
scaleLineColor: scaleLineColor ?? this.scaleLineColor,
scaleAlignment: scaleAlignment ?? this.scaleAlignment,
scaleTextSize: scaleTextSize ?? this.scaleTextSize,
scaleTextWeight: scaleTextWeight ?? this.scaleTextWeight,
);
}