Role constructor

Role({
  1. String? role,
  2. String? id,
  3. int? worksCount,
})

Implementation

Role({
  this.role,
  this.id,
  this.worksCount,
});