logResult method
subscription log characteristic result with read/write/notification/indication return Log
Implementation
@override
Stream<Log> logResult() => logsChannel
.receiveBroadcastStream()
.map((event) => Log.fromBuffer(event))
.asBroadcastStream();