sftpCancelDownload method

Future sftpCancelDownload()

Cancels an ongoing download using SFTP.

await client.sftpCancelDownload();

Implementation

Future sftpCancelDownload() async {
  await _channel.invokeMethod('sftpCancelDownload', {
    "id": id,
  });
}