This commit is contained in:
Developer
2026-05-18 17:52:09 +08:00
commit cae04eead5
62 changed files with 11230 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
/// Alignment for ticket printing.
///
/// Maps to the autoreplyprint AAR SDK CP_Pos_Alignment constants.
enum PrinterAlignment {
/// Left alignment
left(0),
/// Center alignment
center(1),
/// Right alignment
right(2);
/// The integer value matching the SDK constant.
final int value;
const PrinterAlignment(this.value);
}