pop

void pop([

  1. int? count
])

Pop the current screen from the stack

Implementation

void pop([int? count]) {
  if (count != null) {
    _.callMethod('pop'.toJS, count.toJS);
  } else {
    _.callMethod('pop'.toJS);
  }
}