isCastedIterable method

bool isCastedIterable(
  1. Object? o
)

Returns true if o is a Iterable<E> where E is arguments0 T.

Implementation

bool isCastedIterable(Object? o) {
  if (!isIterable || o is! Iterable) return false;

  var arg0 = arguments0;
  return arg0 != null &&
      arg0.isValidGenericType &&
      arg0.callCasted(<E>() => o is Iterable<E>);
}