printText method

Future<Map<String, dynamic>> printText(
  1. String text, {
  2. int fontSize = 50,
  3. bool isBold = false,
  4. bool isUnderline = false,
  5. String alignment = "LEFT",
})

Implementation

Future<Map<String, dynamic>> printText(
  String text, {
  int fontSize = 50,
  bool isBold = false,
  bool isUnderline = false,
  String alignment = "LEFT",
}) {
  throw UnimplementedError('printText() has not been implemented.');
}