isVariableSize function

bool isVariableSize(
  1. Object? object
)

Returns true if the given encoder, decoder, or codec is variable-size.

Implementation

bool isVariableSize(Object? object) => !isFixedSize(object);