Example constructor
const
Example({})
Implementation
const factory Example({
/// Short description for the example.
String? summary,
/// Long description for the example.
String? description,
/// Embedded literal example
dynamic value,
/// A URI that points to the literal example.
String? externalValue,
/// Reference to a response defined in [Components.examples]
@JsonKey(name: '\$ref') @_ExampleRefConverter() String? ref,
}) = ExampleObject;