fetch method
Downloads DeBot from blockchain and creates and fetches its metadata.
Implementation
Future<ResultOfFetch> fetch(ParamsOfFetch params) async {
final res = await _tonCore.request('debot.fetch', params.toString());
return ResultOfFetch.fromMap(res);
}