quit method
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;
}
Ends the POP session and also removes any messages that have been marked as deleted
Future<void> quit() async {
await sendCommand(PopQuitCommand(this));
isLoggedIn = false;
}