upper method

void upper()

Transforms a birth name into UPPERCASE.

Implementation

void upper() {
  if (_done) throw _builderException(_context, 'upper');
  _context = Namefully(_state.last.upper(), config: _state.last.config);
  _state.add(_context, id: 'upper');
  _streamer.sink.add(_context);
}