isIterable property

bool get isIterable

Implementation

bool get isIterable {
  return allSupertypes.indexWhere((final st) {
        return st
            .getDisplayString(
              withNullability: false,
            )
            .startsWith('Iterable<');
      }) >=
      0;
}