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