copyWith method
Implementation
SwaggerServer copyWith({
String? url,
String? description,
}) =>
SwaggerServer(
url: url ?? this.url,
description: description ?? this.description,
);
SwaggerServer copyWith({
String? url,
String? description,
}) =>
SwaggerServer(
url: url ?? this.url,
description: description ?? this.description,
);