processResponse method
Implementation
processResponse(LioResponse response) {
_queue!.removeFirst();
if (_queue!.isNotEmpty) {
_invokeMethodPrint(_queue!.first);
} else {
this.callback!.call(response);
this.callback = null;
}
}
processResponse(LioResponse response) {
_queue!.removeFirst();
if (_queue!.isNotEmpty) {
_invokeMethodPrint(_queue!.first);
} else {
this.callback!.call(response);
this.callback = null;
}
}