ExecutableElementImpl constructor
ExecutableElementImpl({})
Creates an executable element with the specified properties.
@param name The name of the executable element @param isAbstract Whether the element is abstract @param isAsynchronous Whether the element is asynchronous @param isExternal Whether the element is external @param isGenerator Whether the element is a generator @param isOperator Whether the element is an operator @param isStatic Whether the element is static @param isSynchronous Whether the element is synchronous @param enclosingElement The element containing this executable
Implementation
ExecutableElementImpl({
required this.name,
required this.isAbstract,
required this.isAsynchronous,
required this.isExternal,
required this.isGenerator,
required this.isOperator,
required this.isStatic,
required this.isSynchronous,
required this.enclosingElement,
});