InfoObject constructor
const
InfoObject({
- required String title,
- required String version,
- String? description,
- String? termsOfService,
- ContactObject? contact,
- LicenseObject? license,
Creates an InfoObject with the given parameters.
Implementation
const InfoObject({
required this.title,
required this.version,
this.description,
this.termsOfService,
this.contact,
this.license,
});