recordCall method
Records a call invocation for the specified methodName.
Implementation
void recordCall(String methodName) {
_callCounts[methodName] = (_callCounts[methodName] ?? 0) + 1;
}
Records a call invocation for the specified methodName.
void recordCall(String methodName) {
_callCounts[methodName] = (_callCounts[methodName] ?? 0) + 1;
}