Role constructor

Role({
  1. String? roleId,
  2. String? name,
  3. List<RoleAttribute>? attribute,
  4. String? createdDateTime,
  5. String? createdById,
  6. List<Client>? clients,
})

Implementation

Role({
  this.roleId,
  this.name,
  this.attribute,
  this.createdDateTime,
  this.createdById,
  this.clients,
});