toUtf8String method

String toUtf8String({
  1. bool? allowMalformed = false,
})

Decodes this list of UTF-8 code units (bytes) to the corresponding string.

Shorthand for uft8Decode.

Implementation

String toUtf8String({bool? allowMalformed = false}) =>
    uft8Decode(allowMalformed: allowMalformed);