quit method

void quit({
  1. String? reason,
})

Leave the network.

Implementation

void quit({String? reason}) {
  _alive();
  command({'type': 'quit', 'reason': reason});
}