asString

fun Flow<ByteArray>.asString(): Flow<String>

Converts the Flow of ByteArray to a Flow of String.

Return

A new Flow of String converted from the original Flow of ByteArray.


fun Flow<Byte>.asString(groupStrategy: GroupStrategy = GroupStrategy.Count(8)): Flow<String>

Converts the Flow of Byte to a Flow of String.

Return

A new Flow of String converted from the original Flow of Byte.