getConstructor method

  1. @override
ConstructorElement? getConstructor(
  1. String name
)
override

Returns the constructor with the given name, or null if not found.

Implementation

@override
ConstructorElement? getConstructor(String name) {
  return element.getConstructor(name);
}