LostData constructor

LostData({
  1. PickedFile? file,
  2. PlatformException? exception,
  3. RetrieveType? type,
})

Creates an instance with the given file, exception, and type. Any of the params may be null, but this is never considered to be empty.

Implementation

LostData({this.file, this.exception, this.type});