Right constructor

const Right({
  1. @Default(null) String? userId,
  2. @Default(false) bool read,
  3. @Default(false) bool write,
  4. @Default(false) bool administration,
})

Implementation

const factory Right({
	@Default(null) String? userId,
	@Default(false) bool read,
	@Default(false) bool write,
	@Default(false) bool administration,
}) = _Right;