Houshan-Basa/lib/ui/screens/setting/bloc/paymant_history_event.dart

11 lines
221 B
Dart

part of 'paymant_history_bloc.dart';
sealed class PaymantHistoryEvent extends Equatable {
const PaymantHistoryEvent();
@override
List<Object> get props => [];
}
class GetAllHistory extends PaymantHistoryEvent {}