superType property

  1. @override
NamedDartType? get superType
override

The supertype of this element, or null if this element does not have a supertype.

Implementation

@override
NamedDartType? get superType => _superType;
set superType (NamedDartType? value)

Implementation

set superType(NamedDartType? value) {
  _superType = value;
}