printRawText method

Future<bool?> printRawText(
  1. String text
)

printRawText print raw text

Implementation

Future<bool?> printRawText(String text) async {
  Map<String, dynamic> params = {
    "raw": text,
    "vendorId": vendorId,
    "productId": productId
  };
  final bool? result = await _channel.invokeMethod('printRawText', params);
  return result;
}