OAuth2SecurityScheme constructor

const OAuth2SecurityScheme(
  1. String flow, {
  2. String? authorization,
  3. List<String>? scopes,
  4. String? refresh,
  5. String? token,
  6. String? description,
  7. Map<String, String>? descriptions,
  8. Uri? proxy,
  9. List<String>? jsonLdType,
  10. Map<String, dynamic>? additionalFields,
})

Constructor.

Implementation

const OAuth2SecurityScheme(
  this.flow, {
  this.authorization,
  this.scopes,
  this.refresh,
  this.token,
  super.description,
  super.descriptions,
  super.proxy,
  super.jsonLdType,
  super.additionalFields,
});