stop method

Future<bool> stop()

Stops this formula, calling stop().

Implementation

Future<bool> stop() async {
  var result = await run('stop', [], fields: _fieldOverwrite);
  return result != null;
}