head method

String head()

Implementation

String head() => _seek >= _data.length ? '' : _data[_seek];