migration done
This commit is contained in:
@@ -6,25 +6,54 @@ part of 'sharing_intent.dart';
|
||||
// RiverpodGenerator
|
||||
// **************************************************************************
|
||||
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(sharingIntentStream)
|
||||
const sharingIntentStreamProvider = SharingIntentStreamProvider._();
|
||||
|
||||
final class SharingIntentStreamProvider
|
||||
extends
|
||||
$FunctionalProvider<
|
||||
Raw<Stream<ReceivedIntentParameter>>,
|
||||
Raw<Stream<ReceivedIntentParameter>>,
|
||||
Raw<Stream<ReceivedIntentParameter>>
|
||||
>
|
||||
with $Provider<Raw<Stream<ReceivedIntentParameter>>> {
|
||||
const SharingIntentStreamProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
retry: null,
|
||||
name: r'sharingIntentStreamProvider',
|
||||
isAutoDispose: false,
|
||||
dependencies: null,
|
||||
$allTransitiveDependencies: null,
|
||||
);
|
||||
|
||||
@override
|
||||
String debugGetCreateSourceHash() => _$sharingIntentStreamHash();
|
||||
|
||||
@$internal
|
||||
@override
|
||||
$ProviderElement<Raw<Stream<ReceivedIntentParameter>>> $createElement(
|
||||
$ProviderPointer pointer,
|
||||
) => $ProviderElement(pointer);
|
||||
|
||||
@override
|
||||
Raw<Stream<ReceivedIntentParameter>> create(Ref ref) {
|
||||
return sharingIntentStream(ref);
|
||||
}
|
||||
|
||||
/// {@macro riverpod.override_with_value}
|
||||
Override overrideWithValue(Raw<Stream<ReceivedIntentParameter>> value) {
|
||||
return $ProviderOverride(
|
||||
origin: this,
|
||||
providerOverride:
|
||||
$SyncValueProvider<Raw<Stream<ReceivedIntentParameter>>>(value),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
String _$sharingIntentStreamHash() =>
|
||||
r'486f994fc0e01a2cffdb19d93f0a332f96a9850c';
|
||||
|
||||
/// See also [sharingIntentStream].
|
||||
@ProviderFor(sharingIntentStream)
|
||||
final sharingIntentStreamProvider =
|
||||
Provider<Raw<Stream<ReceivedIntentParameter>>>.internal(
|
||||
sharingIntentStream,
|
||||
name: r'sharingIntentStreamProvider',
|
||||
debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
|
||||
? null
|
||||
: _$sharingIntentStreamHash,
|
||||
dependencies: null,
|
||||
allTransitiveDependencies: null,
|
||||
);
|
||||
|
||||
@Deprecated('Will be removed in 3.0. Use Ref instead')
|
||||
// ignore: unused_element
|
||||
typedef SharingIntentStreamRef =
|
||||
ProviderRef<Raw<Stream<ReceivedIntentParameter>>>;
|
||||
// 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