decode method

  1. @override
String decode(
  1. List<int> bytes, {
  2. bool allowInvalid = false,
})
override

Decodes bytes using encoder.convert.

Implementation

@override
String decode(List<int> bytes, {bool allowInvalid = false}) =>
    decoder.convert(bytes, allowInvalid: allowInvalid);