isCastedSet method

bool isCastedSet(
  1. Object? o
)

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

Implementation

bool isCastedSet(Object? o) {
  if (!isSet || o is! Set) return false;

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