AccessLevel constructor

AccessLevel({
  1. BasicLevel? basic,
  2. CustomLevel? custom,
  3. String? description,
  4. String? name,
  5. String? title,
})

Implementation

AccessLevel({
  this.basic,
  this.custom,
  this.description,
  this.name,
  this.title,
});