copyWith method

WebApiModulesPluginsTeamupTeamupPluginLocationSettings copyWith({
  1. int? status,
  2. bool? success,
  3. String? msg,
  4. String? locationId,
  5. String? location,
  6. String? teamupCalendarKey,
  7. String? teamupDeliveryEventCalendarId,
  8. String? teamupPickupEventCalendarId,
})

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,
  );
}