copyWith method
Implementation
InfoOpenApi copyWith({
String? title,
String? description,
String? termsOfService,
String? version,
}) => InfoOpenApi(
title: title ?? this.title,
description: description ?? this.description,
termsOfService: termsOfService ?? this.termsOfService,
version: version ?? this.version,
);