part of 'bluetooth_connect_bloc.dart'; @freezed class BluetoothConnectState with _$BluetoothConnectState { factory BluetoothConnectState({ required Option> failureOrSuccee, @Default(false) bool isConnecting, }) = _BluetoothConnectState; factory BluetoothConnectState.initial() => BluetoothConnectState(failureOrSuccee: none()); }