resume_transaction_iterator method
The iterator stays exactly at the same position where the resume_state was caught.
Note that resume_state doesn't store the account filter. If the application requires
to use the same account filter as it was when the iterator was created then the application
must pass the account filter again in accounts_filter parameter.
Application should call the remove_iterator when iterator is no longer required.
Implementation
Future<RegisteredIterator> resume_transaction_iterator(
ParamsOfResumeTransactionIterator params) async {
final res = await _tonCore.request(
'net.resume_transaction_iterator', params.toString());
return RegisteredIterator.fromMap(res);
}