inputPassportElementErrorSourceTranslationFile property

InputPassportElementErrorSourceTranslationFile? inputPassportElementErrorSourceTranslationFile

One of the files containing the translation of the document contains an error. The error is considered resolved when the file with the translation changes

Implementation

InputPassportElementErrorSourceTranslationFile?
    get inputPassportElementErrorSourceTranslationFile {
  if (this is InputPassportElementErrorSourceTranslationFile) {
    return this as InputPassportElementErrorSourceTranslationFile;
  }
  return null;
}