uint8ListToString function

String uint8ListToString(
  1. Uint8List list, {
  2. bool allowMalformed = true,
})

Implementation

String uint8ListToString(Uint8List list, {bool allowMalformed = true}) {
  return utf8.decode(list, allowMalformed: allowMalformed);
}