isDynamic property

bool isDynamic

Whether the length of the encoding will depend on the data being encoded.

Types that have that property are called "dynamic types" in the solidity abi encoding and are treated differently when being a part of a tuple or an array.

Implementation

bool get isDynamic => length == null;