callbackStackRemoveLast function

dynamic callbackStackRemoveLast()

Implementation

callbackStackRemoveLast(){
  if (_callbackStack.isNotEmpty)
    _callbackStack.removeLast();
}