buildTicket method
Implementation
Future<Uint8List> buildTicket(BuildContext context, Invoice invoice, PdfPageFormat pageFormat) async {
try {
final options = _createDocumentOptions(context, invoice);
return await _documentTicket.buildPDF(pageFormat, options);
} catch(err) {
throw 'buildTicket: ${err.toString()}';
}
}