realDartMethodParams property
Return the real parameters of the user-declared Dart interface.
Implementation
List<Variable> get realDartMethodParams => hasMessagerAnno
? parameters
.take(parameters.length - 1)
.toList() // If the method has the RequiredMessager annotation, remove the last parameter.
: parameters;