InfoOpenApi constructor

const InfoOpenApi({
  1. required String title,
  2. String? description,
  3. String? termsOfService,
  4. required String version,
})

Implementation

const InfoOpenApi({
  required this.title,
  this.description,
  this.termsOfService,
  required this.version,
});