emit method

void emit(
  1. UDocValue next
)

Implementation

void emit(UDocValue next) {
  if (_disposed) return;
  value = next;
  if (!_states.isClosed) _states.add(next);
}