disconnect static method
Implementation
static disconnect(VChatCloudResult result) async {
try {
_channel.dispose(result);
} catch (e) {
if (e is Error) {
debugPrintStack(label: e.toString(), stackTrace: e.stackTrace);
}
} finally {
_isInitialized = false;
}
}