copyWith method

MarkerOption copyWith({
  1. MarkerIcon? defaultMarker,
})

Implementation

MarkerOption copyWith({
  MarkerIcon? defaultMarker,
}) {
  return MarkerOption(
    defaultMarker: defaultMarker ?? this.defaultMarker,
  );
}