networkIsUp property

Stream<void> get networkIsUp

Will emit void when detected that network is up.

Implementation

Stream<void> get networkIsUp =>
    _stream.where((event) => event is NetworkIsUpEvent);