popBuffer method

String popBuffer()

Implementation

String popBuffer() {
  if (_blockBuffers.isEmpty) {
    throw Exception('No block buffer to pop');
  }
  return _blockBuffers.removeLast().toString();
}