copyWith method

GoogleMapsChangePositionAction copyWith({
  1. ID? id,
  2. String? type,
  3. ActionGroups? group,
  4. ID? controllerID,
  5. ConditionParameter? lat,
  6. ConditionParameter? lng,
})

Implementation

GoogleMapsChangePositionAction copyWith({
  ID? id,
  String? type,
  ActionGroups? group,
  ID? controllerID,
  ConditionParameter? lat,
  ConditionParameter? lng,
}) {
  return GoogleMapsChangePositionAction(
    id: id ?? this.id,
    type: type ?? this.type,
    controllerID: controllerID ?? this.controllerID,
    lat: lat ?? this.lat,
    lng: lng ?? this.lng,
  );
}