query method

Future<void> query(
  1. String content
)

Puts the given content into the /tmp/query.txt file.

Implementation

Future<void> query(String content) async {
  await _sshData.execute('echo "$content" > /tmp/query.txt');
}