printText method

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

printText print text

Implementation

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