BearerSecurityScheme constructor

const BearerSecurityScheme({
  1. String? name,
  2. String alg = _defaultAlgValue,
  3. String format = _defaultFormatValue,
  4. String? authorization,
  5. String in_ = _defaultInValue,
  6. String? description,
  7. Map<String, String>? descriptions,
  8. Uri? proxy,
  9. List<String>? jsonLdType,
  10. Map<String, dynamic>? additionalFields,
})

Constructor.

Implementation

const BearerSecurityScheme({
  this.name,
  this.alg = _defaultAlgValue,
  this.format = _defaultFormatValue,
  this.authorization,
  this.in_ = _defaultInValue,
  super.description,
  super.descriptions,
  super.proxy,
  super.jsonLdType,
  super.additionalFields,
});