InputIdentityDocument constructor

InputIdentityDocument({
  1. required String number,
  2. Date? expirationDate,
  3. InputFile? frontSide,
  4. InputFile? reverseSide,
  5. InputFile? selfie,
  6. required List<InputFile> translation,
})

Implementation

InputIdentityDocument({
  required this.number,
  this.expirationDate,
  this.frontSide,
  this.reverseSide,
  this.selfie,
  required this.translation,
});