isSchRun method

Future<bool> isSchRun()

Implementation

Future<bool> isSchRun() async {
  var result = await sendCmd('IsSchRun');
  return (result?.dataLines.first.toLowerCase() == 'yes');
}