SecurityLevel constructor

SecurityLevel({
  1. String? description,
  2. String? id,
  3. bool? isDefault,
  4. String? issueSecuritySchemeId,
  5. String? name,
  6. String? self,
})

Implementation

SecurityLevel(
    {this.description,
    this.id,
    bool? isDefault,
    this.issueSecuritySchemeId,
    this.name,
    this.self})
    : isDefault = isDefault ?? false;