You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now it's Bool? isConnectable so ternarily [null, false, true]
it's nullable because it's only available on iOS host OS, on android it is still connectable so null very importantly does not mean false at all!
Therefore I'd also recommend using a less misleading representation being the enum Connectivity [ .notAvailable| .unsupported, . notConnectable, .connectable]
correspondingly mapping to the Bool? values above.
#586 (comment)
Connectivity with 3 states:
Connectivity.noInfo (or notAvailable?), Connectivity.notConnectable, Connectivity.Connectable
The text was updated successfully, but these errors were encountered: