ignoreTypes property

Set<Type> ignoreTypes
getter/setter pair

Widget types to ignore in a list. By default, includes Spacer. You can modify this list as appropriate. For example, to ignore a hypothetical "Gap" widget type:

AnimateList.ignoreTypes.add(Gap);

Implementation

static Set<Type> ignoreTypes = {Spacer};