lastCall method
MethodCall?
lastCall()
inherited
Implementation
MethodCall? lastCall() {
if (methodCallList.isEmpty) {
return null;
} else {
return methodCallList.last;
}
}
MethodCall? lastCall() {
if (methodCallList.isEmpty) {
return null;
} else {
return methodCallList.last;
}
}