copyToLocalFile method

  1. @override
Future<void> copyToLocalFile(
  1. String srcUri,
  2. String destPath
)
override

Implementation

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