copyWith method

SwaggerServer copyWith({
  1. String? url,
  2. String? description,
})

Implementation

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