Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- part of 'category_filter_bloc.dart';
- abstract class CategoryFilterEvent extends Equatable {
- const CategoryFilterEvent();
- @override
- List<Object> get props => [];
- }
- class OnSelectedLocation extends CategoryFilterEvent {
- final String location;
- const OnSelectedLocation(this.location);
- @override
- List<Object> get props => [location];
- }
- class OnSelectedCategory extends CategoryFilterEvent {
- final String category;
- const OnSelectedCategory(this.category);
- @override
- List<Object> get props => [category];
- }
- class OnSelectedCondition extends CategoryFilterEvent {
- final String condition;
- const OnSelectedCondition(this.condition);
- @override
- List<Object> get props => [condition];
- }
- class OnSelectedCourier extends CategoryFilterEvent {
- final String courier;
- const OnSelectedCourier(this.courier);
- @override
- List<Object> get props => [courier];
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement