copyWith method
Implementation
MarkerLayerOptions copyWith({
MarkerWidgetBuilder? builder,
Alignment? alignment,
bool? rotate,
}) {
return MarkerLayerOptions(
builder: builder ?? this.builder,
alignment: alignment ?? this.alignment,
rotate: rotate ?? this.rotate,
);
}