copyWith method
GoogleMapsChangePositionAction
copyWith({
- ID? id,
- String? type,
- ActionGroups? group,
- ID? controllerID,
- ConditionParameter? lat,
- 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,
);
}