copyWith method
Implementation
SwaggerInfo copyWith({
String? title,
Contact? contact,
String? version,
}) =>
SwaggerInfo(
title: title ?? this.title,
contact: contact ?? this.contact,
version: version ?? this.version,
);