CommsRole constructor

CommsRole({
  1. required int id,
  2. required String name,
  3. required String description,
  4. DateTime? createdAt,
  5. DateTime? updatedAt,
})

Implementation

CommsRole({
  required this.id,
  required this.name,
  required this.description,
  this.createdAt,
  this.updatedAt,
});