processResponse method

dynamic processResponse(
  1. LioResponse response
)

Implementation

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