Aditya Siregar 73320561b0 first commit
2025-07-30 22:38:44 +07:00

6 lines
186 B
Dart

part of 'payment_methods_bloc.dart';
@freezed
class PaymentMethodsEvent with _$PaymentMethodsEvent {
const factory PaymentMethodsEvent.fetchPaymentMethods() = _FetchPaymentMethods;
}