UpdateGroupRoleRequest constructor

UpdateGroupRoleRequest({
  1. String? name,
  2. String? description,
  3. bool? isSelfAssignable = false,
  4. List<String>? permissions,
  5. int? order,
})

Returns a new UpdateGroupRoleRequest instance.

Implementation

UpdateGroupRoleRequest({
  this.name,
  this.description,
  this.isSelfAssignable = false,
  this.permissions,
  this.order,
});