6 lines
186 B
Dart
6 lines
186 B
Dart
|
|
part of 'payment_methods_bloc.dart';
|
||
|
|
|
||
|
|
@freezed
|
||
|
|
class PaymentMethodsEvent with _$PaymentMethodsEvent {
|
||
|
|
const factory PaymentMethodsEvent.fetchPaymentMethods() = _FetchPaymentMethods;
|
||
|
|
}
|