// GENERATED CODE - DO NOT MODIFY BY HAND part of 'chat_subscribe.dart'; // ************************************************************************** // RiverpodGenerator // ************************************************************************** // GENERATED CODE - DO NOT MODIFY BY HAND // ignore_for_file: type=lint, type=warning @ProviderFor(ChatSubscribeNotifier) const chatSubscribeProvider = ChatSubscribeNotifierFamily._(); final class ChatSubscribeNotifierProvider extends $NotifierProvider> { const ChatSubscribeNotifierProvider._({ required ChatSubscribeNotifierFamily super.from, required String super.argument, }) : super( retry: null, name: r'chatSubscribeProvider', isAutoDispose: true, dependencies: null, $allTransitiveDependencies: null, ); @override String debugGetCreateSourceHash() => _$chatSubscribeNotifierHash(); @override String toString() { return r'chatSubscribeProvider' '' '($argument)'; } @$internal @override ChatSubscribeNotifier create() => ChatSubscribeNotifier(); /// {@macro riverpod.override_with_value} Override overrideWithValue(List value) { return $ProviderOverride( origin: this, providerOverride: $SyncValueProvider>(value), ); } @override bool operator ==(Object other) { return other is ChatSubscribeNotifierProvider && other.argument == argument; } @override int get hashCode { return argument.hashCode; } } String _$chatSubscribeNotifierHash() => r'2b9fae96eb1f96a514a074985e5efa1c13d10aa4'; final class ChatSubscribeNotifierFamily extends $Family with $ClassFamilyOverride< ChatSubscribeNotifier, List, List, List, String > { const ChatSubscribeNotifierFamily._() : super( retry: null, name: r'chatSubscribeProvider', dependencies: null, $allTransitiveDependencies: null, isAutoDispose: true, ); ChatSubscribeNotifierProvider call(String roomId) => ChatSubscribeNotifierProvider._(argument: roomId, from: this); @override String toString() => r'chatSubscribeProvider'; } abstract class _$ChatSubscribeNotifier extends $Notifier> { late final _$args = ref.$arg as String; String get roomId => _$args; List build(String roomId); @$mustCallSuper @override void runBuild() { final created = build(_$args); final ref = this.ref as $Ref, List>; final element = ref.element as $ClassProviderElement< AnyNotifier, List>, List, Object?, Object? >; element.handleValue(ref, created); } }