copyWith method
Implementation
RemovePolylineOp copyWith(
{Key? key, int? index, InteractivePolyline? removed}) {
return RemovePolylineOp(
key: key ?? this.key,
index: index ?? this.index,
removed: removed ?? this.removed,
);
}
RemovePolylineOp copyWith(
{Key? key, int? index, InteractivePolyline? removed}) {
return RemovePolylineOp(
key: key ?? this.key,
index: index ?? this.index,
removed: removed ?? this.removed,
);
}