sistemato assets, finito creazione company, inizio lavoro store
This commit is contained in:
16
lib/features/store/bloc/store_events.dart
Normal file
16
lib/features/store/bloc/store_events.dart
Normal file
@@ -0,0 +1,16 @@
|
||||
part of 'store_bloc.dart';
|
||||
|
||||
abstract class StoreEvent extends Equatable {
|
||||
const StoreEvent();
|
||||
|
||||
@override
|
||||
List<Object?> get props => [];
|
||||
}
|
||||
|
||||
class CreateStoreRequested extends StoreEvent {
|
||||
final StoreModel store;
|
||||
const CreateStoreRequested({required this.store});
|
||||
|
||||
@override
|
||||
List<Object?> get props => [store];
|
||||
}
|
||||
Reference in New Issue
Block a user