getFullFile method
Future<String?>
getFullFile(
- String id, {
- required bool isOrigin,
- PMProgressHandler? progressHandler,
- int subtype = 0,
- PMDarwinAVFileType? darwinFileType,
Implementation
Future<String?> getFullFile(
String id, {
required bool isOrigin,
PMProgressHandler? progressHandler,
int subtype = 0,
PMDarwinAVFileType? darwinFileType,
}) async {
final params = <String, dynamic>{
'id': id,
'isOrigin': isOrigin,
'subtype': subtype,
'darwinFileType': darwinFileType?.value ?? 0,
};
_injectProgressHandlerParams(params, progressHandler);
return _channel.invokeMethod(PMConstants.mGetFullFile, params);
}