forEachField method
Receives an iterator function and invokes it once per each field in the Subscription.
Note that the iterator is executed before this method returns.
callbackiterator Function instance that will be called once per each field in the Subscription.
Implementation
void forEachField(void Function(String? fieldName, int fieldPosition, String? value) callback) {
_forEachField(allowInterop(callback));
}