allSupertypes property

  1. @override
List<InterfaceType> get allSupertypes
override

A list containing all of the supertypes of this interface.

Implementation

@override
List<InterfaceType> get allSupertypes {
  return _allSuperTypes ??= library.resolver.allSupertypesOf(this);
}