feat: working connection, conn setting, and gear ratio setting for universal shifters
This commit is contained in:
@ -6,7 +6,24 @@ part of 'bluetooth.dart';
|
||||
// RiverpodGenerator
|
||||
// **************************************************************************
|
||||
|
||||
String _$bluetoothHash() => r'5e9c37c57e723b84dd08fd8763e7c445b3a4dbf3';
|
||||
String _$bluetoothHash() => r'f1fb75c72a7a473fc545baea6bedfdf4a21ab26b';
|
||||
|
||||
String _$reactiveBleHash() => r'9c4d4f37f7a0da1741b42d6a4c3f0f00c2c07f3c';
|
||||
|
||||
/// See also [reactiveBle].
|
||||
@ProviderFor(reactiveBle)
|
||||
final reactiveBleProvider = AutoDisposeProvider<FlutterReactiveBle>.internal(
|
||||
reactiveBle,
|
||||
name: r'reactiveBleProvider',
|
||||
debugGetCreateSourceHash:
|
||||
const bool.fromEnvironment('dart.vm.product') ? null : _$reactiveBleHash,
|
||||
dependencies: null,
|
||||
allTransitiveDependencies: null,
|
||||
);
|
||||
|
||||
@Deprecated('Will be removed in 3.0. Use Ref instead')
|
||||
// ignore: unused_element
|
||||
typedef ReactiveBleRef = AutoDisposeProviderRef<FlutterReactiveBle>;
|
||||
|
||||
/// See also [bluetooth].
|
||||
@ProviderFor(bluetooth)
|
||||
@ -23,5 +40,24 @@ final bluetoothProvider =
|
||||
@Deprecated('Will be removed in 3.0. Use Ref instead')
|
||||
// ignore: unused_element
|
||||
typedef BluetoothRef = AutoDisposeFutureProviderRef<BluetoothController>;
|
||||
String _$connectionStatusHash() => r'4dba587ef7703dabca4b2b9800e0798decfe2977';
|
||||
|
||||
/// See also [connectionStatus].
|
||||
@ProviderFor(connectionStatus)
|
||||
final connectionStatusProvider =
|
||||
AutoDisposeStreamProvider<(ConnectionStatus, String?)>.internal(
|
||||
connectionStatus,
|
||||
name: r'connectionStatusProvider',
|
||||
debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
|
||||
? null
|
||||
: _$connectionStatusHash,
|
||||
dependencies: null,
|
||||
allTransitiveDependencies: null,
|
||||
);
|
||||
|
||||
@Deprecated('Will be removed in 3.0. Use Ref instead')
|
||||
// ignore: unused_element
|
||||
typedef ConnectionStatusRef
|
||||
= AutoDisposeStreamProviderRef<(ConnectionStatus, String?)>;
|
||||
// ignore_for_file: type=lint
|
||||
// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member, deprecated_member_use_from_same_package
|
||||
|
||||
Reference in New Issue
Block a user