stop method

  1. @override
Future<FabricServer> stop ()
override

Implementation

@override
Future<FabricServer> stop() async {
  executeCommand("stop");
  await process.exitCode;
  this._running = false;
  return this;
}