convertChunkSync abstract method

List<int> convertChunkSync(
  1. List<int> input, {
  2. Uint8List? possibleBuffer,
})

Adds input to the sequence of converted bytes. Returns a list of converted bytes, which may be empty or larger the input.

You MUST later call convert, which will finish converting.

Implementation

List<int> convertChunkSync(
  List<int> input, {
  Uint8List? possibleBuffer,
});