performOneShotConversion method

bool performOneShotConversion(
  1. Sink<List<int>> sink,
  2. List<int> bytes
)

Subclasses may override to perform a one-shot optimized conversion of bytes to the sink.

Return false if one-shot is not to be (or could not be) performed, otherwise answer true

Implementation

bool performOneShotConversion(Sink<List<int>> sink, List<int> bytes) => false;