11 lines
234 B
Dart
Raw Normal View History

2025-08-04 23:13:52 +07:00
part of 'refund_bloc.dart';
@freezed
class RefundEvent with _$RefundEvent {
const factory RefundEvent.refundPayment({
2025-08-06 00:53:02 +07:00
required String orderId,
2025-08-04 23:13:52 +07:00
required String reason,
required int refundAmount,
}) = _RefundPayment;
}