previous method

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

Implementation

Future previous({bool animation = true}) {
  final e = event = PrevIndexControllerEvent(animation: animation);
  notifyListeners();
  return e.future;
}