copyWith method
Creates a copy with updated values.
Implementation
BrushExtent copyWith({double? start, double? end}) {
return BrushExtent(start ?? this.start, end ?? this.end);
}
Creates a copy with updated values.
BrushExtent copyWith({double? start, double? end}) {
return BrushExtent(start ?? this.start, end ?? this.end);
}