7 lines
166 B
Dart
7 lines
166 B
Dart
|
|
part of 'bluetooth_loader_bloc.dart';
|
||
|
|
|
||
|
|
@freezed
|
||
|
|
class BluetoothLoaderEvent with _$BluetoothLoaderEvent {
|
||
|
|
const factory BluetoothLoaderEvent.fetched() = _Fetched;
|
||
|
|
}
|