22 lines
474 B
Dart
22 lines
474 B
Dart
|
|
part of 'order_bloc.dart';
|
||
|
|
|
||
|
|
@freezed
|
||
|
|
class OrderEvent with _$OrderEvent {
|
||
|
|
const factory OrderEvent.started() = _Started;
|
||
|
|
const factory OrderEvent.order(
|
||
|
|
List<ProductQuantity> items,
|
||
|
|
int discount,
|
||
|
|
int discountAmount,
|
||
|
|
int tax,
|
||
|
|
int serviceCharge,
|
||
|
|
int paymentAmount,
|
||
|
|
String customerName,
|
||
|
|
int tableNumber,
|
||
|
|
String status,
|
||
|
|
String paymentStatus,
|
||
|
|
String paymentMethod,
|
||
|
|
int totalPriceFinal,
|
||
|
|
OrderType orderType,
|
||
|
|
) = _Order;
|
||
|
|
}
|