Role constructor

Role({
  1. String? uid,
  2. String? role,
  3. String? state,
})

Implementation

Role({
  this.uid,
  this.role,
  this.state,
});