onUntaggedResponse method

void onUntaggedResponse(
  1. ImapResponse imapResponse
)

Handles an untagged response from the server

Implementation

void onUntaggedResponse(ImapResponse imapResponse) {
  final task = _currentCommandTask;
  if (task == null || !task.parseUntaggedResponse(imapResponse)) {
    log('untagged not handled: [$imapResponse] by task $task');
  }
}