sftpRm method

Future<String?> sftpRm(
  1. String path
)

Removes the specified file using SFTP.

await client.sftpRm("testfile");

Implementation

Future<String?> sftpRm(String path) async {
  var result = await _channel.invokeMethod('sftpRm', {
    "id": id,
    "path": path,
  });
  return result;
}