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