popCreation method
Pops a type from the creation stack
Implementation
void popCreation(Type type) {
if (_creationStack.isNotEmpty && _creationStack.last == type) {
_creationStack.removeLast();
}
}
Pops a type from the creation stack
void popCreation(Type type) {
if (_creationStack.isNotEmpty && _creationStack.last == type) {
_creationStack.removeLast();
}
}