PlexPrinter class

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

buildCsv(List columns, List<List> rows) String
RFC 4180 CSV from headers and row values. Does not prompt to save.
buildExcelBytes(String title, List columns, List<List> rows) List<int>
Builds an .xlsx workbook in memory. Does not prompt to save.
buildTablePdf(String title, List columns, List<List> rows) List<int>
Plex-owned table PDF (Helvetica / WinAnsi). No Syncfusion DataGrid.
printCsv(String title, List columns, List<List> rows) Future<String?>
printExcel(String title, List columns, List<List> rows) → dynamic
printPdf(String title, List columns, List<List> rows) Future<String?>
Builds a simple table PDF and saves it via savePdfFile.
saveCsvFile(String title, List<int> bytes) Future<String?>
saveExcelFile(String title, List<int> bytes) Future<String?>
savePdfFile(String title, List<int> bytes) Future<String?>