Role constructor

Role({
  1. String? id,
  2. String? name,
})

Returns a new Role instance.

Implementation

Role({
  this.id,
  this.name,
});