AccessSubject constructor

const AccessSubject({
  1. required String type,
  2. required String id,
  3. String? name,
  4. String? firstName,
  5. String? lastName,
  6. String? email,
  7. String? objectType,
  8. String? relation,
})

Implementation

const AccessSubject({
  required this.type,
  required this.id,
  this.name,
  this.firstName,
  this.lastName,
  this.email,
  this.objectType,
  this.relation,
});