disconnect method

Future<bool> disconnect()

Implementation

Future<bool> disconnect() async {
  log.info("cast_sender.disconnect()");
  _connectionChannel?.sendMessage({
    'type': 'CLOSE',
  });
  _socket?.destroy();
  _dispose();
  connectionDidClose = true;
  return true;
}