pop
void
pop(
Pop the current screen from the stack
Implementation
void pop([int? count]) {
if (count != null) {
_.callMethod('pop'.toJS, count.toJS);
} else {
_.callMethod('pop'.toJS);
}
}
void
pop(
Pop the current screen from the stack
void pop([int? count]) {
if (count != null) {
_.callMethod('pop'.toJS, count.toJS);
} else {
_.callMethod('pop'.toJS);
}
}