IdentityDocument constructor

IdentityDocument({
  1. String? extra,
  2. int? client_id,
  3. string? number,
  4. Date? expiry_date,
  5. DatedFile? front_side,
  6. DatedFile? reverse_side,
  7. DatedFile? selfie,
  8. vector<DatedFile>? translation,
})

Implementation

IdentityDocument({
  super.extra,
  super.client_id,
  this.number,
  this.expiry_date,
  this.front_side,
  this.reverse_side,
  this.selfie,
  this.translation,
});