downloadFile static method

Future<void> downloadFile(
  1. Map file,
  2. bool autoSave
)

Implementation

static Future<void> downloadFile(
    Map<dynamic, dynamic> file, bool autoSave) async {
  await _channel
      .invokeMethod('downloadFile', {'file': file, 'autoSave': autoSave});
}