copyWith method
LabelPolylineOptions
copyWith({
- Alignment? alignment,
- bool? rotate,
- bool? hideOnEdit,
- EdgeInsets? margin,
Implementation
LabelPolylineOptions copyWith({
Alignment? alignment,
bool? rotate,
bool? hideOnEdit,
EdgeInsets? margin,
}) {
return LabelPolylineOptions(
alignment: alignment ?? this.alignment,
rotate: rotate ?? this.rotate,
hideOnEdit: hideOnEdit ?? this.hideOnEdit,
margin: margin ?? this.margin,
);
}