convert method

  1. @override
Uint8List convert(
  1. String input
)
override

Produce a list of UTF-32 encoded bytes. This method prefixes the resulting bytes with a big-endian byte-order-marker.

Implementation

@override
Uint8List convert(String input) => encodeUtf32Be(input, true);