originFileWithSubtype property

Future<File?> originFileWithSubtype

Obtain the origin file with subtype.

This method only takes effect on iOS, typically for Live Photos.

See also:

  • file which can obtain the compressed file.
  • fileWithSubtype which can obtain the compressed file with subtype.
  • originFile which can obtain the origin file.
  • loadFile which can obtain file with PMProgressHandler.

Implementation

Future<File?> get originFileWithSubtype {
  return _getFile(isOrigin: true, subtype: subtype);
}