ready property

Future<bool> ready

If the Host (Client/Server) has completed it's initialization phase and is ready to start advertising/discovering services.

To check if the Server can start receiving connections, You should first await on this and then check the Server.running property.

Implementation

Future<bool> get ready => _readyCompleter.future;