quit method

Signs the user out and terminates the connection

Implementation

Future<SmtpResponse> quit() async {
  final response = await sendCommand(SmtpQuitCommand(this));
  isLoggedIn = false;

  return response;
}