copyWith method

Implementation

WebApiModulesPluginsTeamupTeamupSettings copyWith({
  List<WebApiModulesPluginsTeamupTeamupPluginLocationSettings>? locations,
  int? status,
  bool? success,
  String? msg,
  String? teamupApiKey,
}) {
  return WebApiModulesPluginsTeamupTeamupSettings(
    locations: locations ?? this.locations,
    status: status ?? this.status,
    success: success ?? this.success,
    msg: msg ?? this.msg,
    teamupApiKey: teamupApiKey ?? this.teamupApiKey,
  );
}