connect method

void connect (
  1. Map<String, dynamic> config
)

Initialize TonClient with provided config Should be always run before usage

Implementation

void connect(Map<String, dynamic> config) {
  _tonCore.connect(config);
  _utils = UtilsModule(_tonCore);
  _abi = AbiModule(_tonCore);
  _boc = BocModule(_tonCore);
  _crypto = CryptoModule(_tonCore);
  _processing = ProcessingModule(_tonCore);
  _tvm = TvmModule(_tonCore);
  _net = NetModule(_tonCore);
  _client = ClientModule(_tonCore);
}