6 lines
186 B
Dart
Raw Normal View History

2025-07-30 22:38:44 +07:00
part of 'payment_methods_bloc.dart';
@freezed
class PaymentMethodsEvent with _$PaymentMethodsEvent {
const factory PaymentMethodsEvent.fetchPaymentMethods() = _FetchPaymentMethods;
}