// GENERATED CODE - DO NOT MODIFY BY HAND part of 'global_view_model.dart'; // ************************************************************************** // RiverpodGenerator // ************************************************************************** String _$deviceConnectStatusHash() => r'1fcbebae924ddb1a7599d6e5fe62852d4e16824b'; /// Copied from Dart SDK class _SystemHash { _SystemHash._(); static int combine(int hash, int value) { // ignore: parameter_assignments hash = 0x1fffffff & (hash + value); // ignore: parameter_assignments hash = 0x1fffffff & (hash + ((0x0007ffff & hash) << 10)); return hash ^ (hash >> 6); } static int finish(int hash) { // ignore: parameter_assignments hash = 0x1fffffff & (hash + ((0x03ffffff & hash) << 3)); // ignore: parameter_assignments hash = hash ^ (hash >> 11); return 0x1fffffff & (hash + ((0x00003fff & hash) << 15)); } } abstract class _$DeviceConnectStatus extends BuildlessAutoDisposeNotifier { late final MethodChannel videoChannel; bool build( MethodChannel videoChannel, ); } ///连接状态 /// /// Copied from [DeviceConnectStatus]. @ProviderFor(DeviceConnectStatus) const deviceConnectStatusProvider = DeviceConnectStatusFamily(); ///连接状态 /// /// Copied from [DeviceConnectStatus]. class DeviceConnectStatusFamily extends Family { ///连接状态 /// /// Copied from [DeviceConnectStatus]. const DeviceConnectStatusFamily(); ///连接状态 /// /// Copied from [DeviceConnectStatus]. DeviceConnectStatusProvider call( MethodChannel videoChannel, ) { return DeviceConnectStatusProvider( videoChannel, ); } @override DeviceConnectStatusProvider getProviderOverride( covariant DeviceConnectStatusProvider provider, ) { return call( provider.videoChannel, ); } static const Iterable? _dependencies = null; @override Iterable? get dependencies => _dependencies; static const Iterable? _allTransitiveDependencies = null; @override Iterable? get allTransitiveDependencies => _allTransitiveDependencies; @override String? get name => r'deviceConnectStatusProvider'; } ///连接状态 /// /// Copied from [DeviceConnectStatus]. class DeviceConnectStatusProvider extends AutoDisposeNotifierProviderImpl { ///连接状态 /// /// Copied from [DeviceConnectStatus]. DeviceConnectStatusProvider( MethodChannel videoChannel, ) : this._internal( () => DeviceConnectStatus()..videoChannel = videoChannel, from: deviceConnectStatusProvider, name: r'deviceConnectStatusProvider', debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') ? null : _$deviceConnectStatusHash, dependencies: DeviceConnectStatusFamily._dependencies, allTransitiveDependencies: DeviceConnectStatusFamily._allTransitiveDependencies, videoChannel: videoChannel, ); DeviceConnectStatusProvider._internal( super._createNotifier, { required super.name, required super.dependencies, required super.allTransitiveDependencies, required super.debugGetCreateSourceHash, required super.from, required this.videoChannel, }) : super.internal(); final MethodChannel videoChannel; @override bool runNotifierBuild( covariant DeviceConnectStatus notifier, ) { return notifier.build( videoChannel, ); } @override Override overrideWith(DeviceConnectStatus Function() create) { return ProviderOverride( origin: this, override: DeviceConnectStatusProvider._internal( () => create()..videoChannel = videoChannel, from: from, name: null, dependencies: null, allTransitiveDependencies: null, debugGetCreateSourceHash: null, videoChannel: videoChannel, ), ); } @override AutoDisposeNotifierProviderElement createElement() { return _DeviceConnectStatusProviderElement(this); } @override bool operator ==(Object other) { return other is DeviceConnectStatusProvider && other.videoChannel == videoChannel; } @override int get hashCode { var hash = _SystemHash.combine(0, runtimeType.hashCode); hash = _SystemHash.combine(hash, videoChannel.hashCode); return _SystemHash.finish(hash); } } mixin DeviceConnectStatusRef on AutoDisposeNotifierProviderRef { /// The parameter `videoChannel` of this provider. MethodChannel get videoChannel; } class _DeviceConnectStatusProviderElement extends AutoDisposeNotifierProviderElement with DeviceConnectStatusRef { _DeviceConnectStatusProviderElement(super.provider); @override MethodChannel get videoChannel => (origin as DeviceConnectStatusProvider).videoChannel; } String _$captchaHash() => r'5aa370277672fd39d550f0c121cb6f17d165401b'; ///验证码 /// /// Copied from [Captcha]. @ProviderFor(Captcha) final captchaProvider = AutoDisposeNotifierProvider.internal( Captcha.new, name: r'captchaProvider', debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') ? null : _$captchaHash, dependencies: null, allTransitiveDependencies: null, ); typedef _$Captcha = AutoDisposeNotifier; String _$checkNewVersionHash() => r'55ae970747e0f222b9e32ec5bed320f742268302'; /// See also [CheckNewVersion]. @ProviderFor(CheckNewVersion) final checkNewVersionProvider = AutoDisposeNotifierProvider.internal( CheckNewVersion.new, name: r'checkNewVersionProvider', debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') ? null : _$checkNewVersionHash, dependencies: null, allTransitiveDependencies: null, ); typedef _$CheckNewVersion = AutoDisposeNotifier; // ignore_for_file: type=lint // ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member