copyWith method
Implementation
WebApiModulesPluginsTeamupTeamupPluginLocationSettings copyWith({
int? status,
bool? success,
String? msg,
String? locationId,
String? location,
String? teamupCalendarKey,
String? teamupDeliveryEventCalendarId,
String? teamupPickupEventCalendarId,
}) {
return WebApiModulesPluginsTeamupTeamupPluginLocationSettings(
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg,
locationId: locationId ?? this.locationId,
location: location ?? this.location,
teamupCalendarKey: teamupCalendarKey ?? this.teamupCalendarKey,
teamupDeliveryEventCalendarId:
teamupDeliveryEventCalendarId ?? this.teamupDeliveryEventCalendarId,
teamupPickupEventCalendarId:
teamupPickupEventCalendarId ?? this.teamupPickupEventCalendarId,
);
}