RoleModel constructor

RoleModel({
  1. String? id,
  2. required String title,
  3. String? description,
  4. bool isDefault = false,
  5. bool admin = false,
  6. DateTime? created,
  7. DateTime? modified,
})

Implementation

RoleModel({
  this.id,
  required this.title,
  this.description,
  this.isDefault = false,
  this.admin = false,
  this.created,
  this.modified,
});