printText method

Future<bool> printText(
  1. String text, {
  2. int fontSize = 1,
})

Print text.

Implementation

Future<bool> printText(String text, {int fontSize = 1}) {
  throw UnimplementedError('printText() has not been implemented.');
}