downloadFile method

Future<List<int>> downloadFile(
  1. String path
)

Implementation

Future<List<int>> downloadFile(String path) async {
  _debugLog('Downloading file from: $path');
  return await _provider.downloadFile(path);
}