Role constructor

Role({
  1. bool? deleted,
  2. String? description,
  3. String? etag,
  4. List<String>? includedPermissions,
  5. String? name,
  6. String? stage,
  7. String? title,
})

Implementation

Role({
  this.deleted,
  this.description,
  this.etag,
  this.includedPermissions,
  this.name,
  this.stage,
  this.title,
});