SecurityScheme constructor

SecurityScheme({
  1. int? defaultSecurityLevelId,
  2. String? description,
  3. int? id,
  4. List<SecurityLevel>? levels,
  5. String? name,
  6. String? self,
})

Implementation

SecurityScheme(
    {this.defaultSecurityLevelId,
    this.description,
    this.id,
    List<SecurityLevel>? levels,
    this.name,
    this.self})
    : levels = levels ?? [];