MethodInvocation<T> constructor

MethodInvocation<T>(
  1. Type classType,
  2. String methodName,
  3. List normalParameters, [
  4. List? optionalParameters,
  5. Map<String, dynamic>? namedParameters,
])

Implementation

MethodInvocation(this.classType, this.methodName, this.normalParameters,
    [this.optionalParameters, this.namedParameters])
    : positionalParametersNames = null;