1 2 3 4 5 6 7 8 9
package com.printer.sdk.usb interface PrintingCallback { fun connectingWithPrinter() fun printingOrderSentSuccessfully() fun connectionFailed(error: String) fun onError(error: String) fun onMessage(message: String) }