restart method

Implementation

Future<GetServerController> restart() async {
  await stop();
  await start();
  return this;
}