PermissionScheme constructor

PermissionScheme({
  1. String? description,
  2. String? expand,
  3. int? id,
  4. required String name,
  5. List<PermissionGrant>? permissions,
  6. Scope? scope,
  7. String? self,
})

Implementation

PermissionScheme(
    {this.description,
    this.expand,
    this.id,
    required this.name,
    List<PermissionGrant>? permissions,
    this.scope,
    this.self})
    : permissions = permissions ?? [];