currentStatus property

Stream<TCPStatus> get currentStatus

Gets the current state of the TCP module

Implementation

Stream<TCPStatus> get currentStatus async* {
  yield* _statusStream.cast<TCPStatus>();
}