Right constructor

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

Implementation

Right({
		String? userId,
		bool? read,
		bool? write,
		bool? administration
	}) : userId = userId ?? null,
	read = read ?? false,
	write = write ?? false,
	administration = administration ?? false;