quit method

Future<void> quit()

Ends the POP session and also removes any messages that have been marked as deleted

Implementation

Future<void> quit() async {
  await sendCommand(PopQuitCommand(this));
  isLoggedIn = false;
}