downloadFile abstract method

Future<String> downloadFile({
  1. required String remotePath,
  2. required String localPath,
})

Downloads a file from a remotePath to a localPath on the device.

Implementation

Future<String> downloadFile({
  required String remotePath,
  required String localPath,
});