isMxRun method

Future<bool> isMxRun()

Implementation

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