copyWith method
GoogleMapsMarkerEntity
copyWith({
- ID? id,
- AdvancedLatLng? position,
- FGeneralTypeInput? title,
- FGeneralTypeInput? snippet,
Implementation
GoogleMapsMarkerEntity copyWith({
ID? id,
AdvancedLatLng? position,
FGeneralTypeInput? title,
FGeneralTypeInput? snippet,
}) =>
GoogleMapsMarkerEntity(
id: id ?? this.id,
position: position ?? this.position,
title: title ?? this.title,
snippet: snippet ?? this.snippet,
);