OpenAPIRef<T>.ref constructor
Creates a $ref object.
Implementation
factory OpenAPIRef.ref(String $ref, {String? summary, String? description}) =>
OpenAPIRef._({
r'$ref': $ref,
'summary': ?summary,
'description': ?description,
});