remove_iterator method

Future<void> remove_iterator(
  1. RegisteredIterator params
)

Frees all resources allocated in library to serve iterator.

Application always should call the remove_iterator when iterator is no longer required.

Implementation

Future<void> remove_iterator(RegisteredIterator params) async {
  await _tonCore.request('net.remove_iterator', params.toString());
}