popGroup method
void
popGroup()
Pops the latest group from the declaration stack.
Implementation
void popGroup() {
if (_declarationStack.isNotEmpty) {
_declarationStack.removeLast();
}
}
Pops the latest group from the declaration stack.
void popGroup() {
if (_declarationStack.isNotEmpty) {
_declarationStack.removeLast();
}
}