printRaw method

Future<GertecResponse> printRaw(
  1. Uint8List data
)

Implementation

Future<GertecResponse> printRaw(Uint8List data) async {
  return GertecResponse.fromJson(
      await GertecPrinterPlatform.instance.printRaw(data) ?? '{}');
}