7 lines
170 B
Dart
7 lines
170 B
Dart
|
|
part of 'current_outlet_bloc.dart';
|
||
|
|
|
||
|
|
@freezed
|
||
|
|
class CurrentOutletEvent with _$CurrentOutletEvent {
|
||
|
|
const factory CurrentOutletEvent.currentOutlet() = _CurrentOutlet;
|
||
|
|
}
|