print method

dynamic print(
  1. dynamic callback(
    1. LioResponse code
    )
)

Implementation

print(Function(LioResponse code) callback) async {
  this.callback = callback;
  await _invokeMethodPrint(_queue!.first);
}