onConnectionEstablished method
Implementation
@override
void onConnectionEstablished(
ConnectionInfo connectionInfo, String serverGreeting) {
_serverInfo = PopServerInfo();
if (serverGreeting.startsWith('+OK')) {
final chunks = serverGreeting.split(' ');
_serverInfo.timestamp = chunks.last;
}
}