MethodInvocation<T>.withPositionalParametersNames constructor

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

Constructor with positionalParametersNames. See parametersToMap.

Implementation

MethodInvocation.withPositionalParametersNames(
  this.reflection,
  this.classType,
  this.methodName,
  this.positionalParametersNames,
  this.normalParameters, [
  this.optionalParameters,
  this.namedParameters,
]);