callsForMethod method
Returns all the MethodCall of a specific method
each call will contain the method name and argument
Implementation
List<MethodCall> callsForMethod({required String named}) {
return methodCallList
.where((element) => element.methodName == named)
.toList();
}