version method
Returns Core Library version
Implementation
Future<ResultOfVersion> version() async {
if (_utils == null) {
throw ('Client core not connected! Use TonClient.connect to open connection!');
}
return _client.version();
}
Returns Core Library version
Future<ResultOfVersion> version() async {
if (_utils == null) {
throw ('Client core not connected! Use TonClient.connect to open connection!');
}
return _client.version();
}