connectionStateReady property

ConnectionStateReady? connectionStateReady

There is a working connection to the Telegram servers

Implementation

ConnectionStateReady? get connectionStateReady {
  if (this is ConnectionStateReady) {
    return this as ConnectionStateReady;
  }
  return null;
}