printQueue static method

dynamic printQueue(
  1. dynamic callback(
    1. LioResponse response
    )
)

Print all texts enqueued by CieloLioHelper.enqueue() and execute callback when it's done

Implementation

static printQueue(Function(LioResponse response) callback) {
  _printer!.print(callback);
}