previous method

Future previous({
  1. bool animation = true,
})
inherited

Implementation

Future previous({bool animation: true}) {
  this.event = PREVIOUS;
  this.animation = animation;
  _completer = new Completer();
  notifyListeners();
  return _completer.future;
}