InvalidFileException constructor

const InvalidFileException({
  1. String message = 'Invalid file.',
  2. String recoverySuggestion = 'Make sure to initialize AWSFile correctly.',
})

The file created from AWSFile is not readable.

Implementation

const InvalidFileException({
  this.message = 'Invalid file.',
  this.recoverySuggestion = 'Make sure to initialize AWSFile correctly.',
});