7 lines
170 B
Dart
7 lines
170 B
Dart
|
|
part of 'customer_loader_bloc.dart';
|
||
|
|
|
||
|
|
@freezed
|
||
|
|
class CustomerLoaderEvent with _$CustomerLoaderEvent {
|
||
|
|
const factory CustomerLoaderEvent.getCustomer() = _GetCustomer;
|
||
|
|
}
|