UTF-8 decode helper.
HINT: Use only for non-secret, small metadata; avoid for large payloads.
static String utf8Decode(Uint8List b) => utf8.decode(b, allowMalformed: false);