skipCurrentItem method

  1. @override
void skipCurrentItem()
override

Skips the current item in the collection.

This is useful when the Decodable implementation is not interested in the current item. It must be called before calling nextItem again if no decoding method is called instead.

Implementation

@override
void skipCurrentItem() {
  return _skip();
}