User constructor

User({
  1. String? userId,
  2. String? personId,
  3. String? passportId,
  4. String? contractId,
})

Implementation

User({
  this.userId,
  this.personId,
  this.passportId,
  this.contractId,
});