passportElementErrorSourceTranslationFile property

PassportElementErrorSourceTranslationFile? passportElementErrorSourceTranslationFile

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

Implementation

PassportElementErrorSourceTranslationFile?
    get passportElementErrorSourceTranslationFile {
  if (this is PassportElementErrorSourceTranslationFile) {
    return this as PassportElementErrorSourceTranslationFile;
  }
  return null;
}