RightDto constructor

RightDto({
  1. String? userId,
  2. bool read = false,
  3. bool write = false,
  4. bool administration = false,
})

Returns a new RightDto instance.

Implementation

RightDto({
  this.userId,
  this.read = false,
  this.write = false,
  this.administration = false,
});