OpenApi constructor

const OpenApi({
  1. String? title,
  2. String? version,
  3. String? description,
  4. List<String>? servers,
  5. List<Map<String, List<String>>>? security,
  6. Map<String, SecurityScheme>? securitySchemes,
})

Creates a new global OpenAPI configuration.

Implementation

const OpenApi({
  this.title,
  this.version,
  this.description,
  this.servers,
  this.security,
  this.securitySchemes,
});