exit method

Future<void> exit()

Implementation

Future<void> exit() async {
  await Future.wait([
    dismiss(),
    remove(),
  ]);
}