version method

Future<ResultOfVersion> version ()

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();
}