redirectedConstructor property

  1. @override
ConstructorNameImpl? redirectedConstructor
override

Return the name of the constructor to which this constructor will be redirected, or null if this is not a redirecting factory constructor.

Implementation

@override
ConstructorNameImpl? get redirectedConstructor => _redirectedConstructor;
void redirectedConstructor=(ConstructorNameImpl? redirectedConstructor)

Implementation

set redirectedConstructor(ConstructorNameImpl? redirectedConstructor) {
  _redirectedConstructor =
      _becomeParentOf(redirectedConstructor as ConstructorNameImpl);
}