printText method

Future<GertecResponse> printText(
  1. GertecText textObject
)

Implementation

Future<GertecResponse> printText(GertecText textObject) async {
  return GertecResponse.fromJson(
      await GertecPrinterPlatform.instance.printText(textObject) ?? '{}');
}