copyWith method

GoogleMapsMarkerEntity copyWith({
  1. ID? id,
  2. AdvancedLatLng? position,
  3. FGeneralTypeInput? title,
  4. 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,
    );