Skip to content

Commit d6f3502

Browse files
committed
feat(account): add available countries bloc event
- Create new AvailableCountriesEvent abstract class - Add FetchAvailableCountries event for fetching available countries list
1 parent eb588c3 commit d6f3502

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
part of 'available_countries_bloc.dart';
2+
3+
abstract class AvailableCountriesEvent extends Equatable {
4+
const AvailableCountriesEvent();
5+
6+
@override
7+
List<Object> get props => [];
8+
}
9+
10+
class FetchAvailableCountries extends AvailableCountriesEvent {
11+
const FetchAvailableCountries();
12+
}

0 commit comments

Comments
 (0)