needsBuiltValue static method

bool needsBuiltValue(
  1. ClassElement classElement
)

Implementation

static bool needsBuiltValue(ClassElement classElement) {
  return classElement.allSupertypes.any(
    (interfaceType) => interfaceType.element.name == 'BuiltNodeElement',
  );
}