print order

This commit is contained in:
efrilm
2025-11-07 16:29:26 +07:00
parent 4eece81eb1
commit 93560b85cb
12 changed files with 1154 additions and 49 deletions
@@ -0,0 +1,7 @@
part of 'print_struck_bloc.dart';
@freezed
class PrintStruckEvent with _$PrintStruckEvent {
const factory PrintStruckEvent.order(Order order) = _Order;
const factory PrintStruckEvent.saveOrder(Order order) = _SaveOrder;
}