encodeUtf32 function

List<int?> encodeUtf32(
  1. String str
)

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

Implementation

List<int?> encodeUtf32(String str) => encodeUtf32be(str, true);