copyToLocalFile method
Implementation
@override
Future<void> copyToLocalFile(String srcUri, String destPath) async {
await methodChannel.invokeMethod<String>('copyToLocalFile', {
'src': srcUri.toString(),
'dest': destPath,
});
}
@override
Future<void> copyToLocalFile(String srcUri, String destPath) async {
await methodChannel.invokeMethod<String>('copyToLocalFile', {
'src': srcUri.toString(),
'dest': destPath,
});
}