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