7 lines
187 B
Dart
7 lines
187 B
Dart
|
|
part of 'bluetooth_connect_bloc.dart';
|
||
|
|
|
||
|
|
@freezed
|
||
|
|
class BluetoothConnectEvent with _$BluetoothConnectEvent {
|
||
|
|
const factory BluetoothConnectEvent.connect(String macAddress) = _Connect;
|
||
|
|
}
|