PassportElementsWithErrors constructor

const PassportElementsWithErrors({
  1. required List<PassportElement> elements,
  2. required List<PassportElementError> errors,
  3. dynamic extra,
  4. int? clientId,
})

Contains information about a Telegram Passport elements and corresponding errors

Implementation

const PassportElementsWithErrors({
  required this.elements,
  required this.errors,
  this.extra,
  this.clientId,
});