start method

Future<bool> start()

Starts this formula, calling start().

Implementation

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