runable
This commit is contained in:
@@ -0,0 +1,65 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'settings_datasource_provider.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// RiverpodGenerator
|
||||
// **************************************************************************
|
||||
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
/// Provider for settings local data source
|
||||
/// This is kept alive as it's a dependency injection provider
|
||||
|
||||
@ProviderFor(settingsLocalDataSource)
|
||||
const settingsLocalDataSourceProvider = SettingsLocalDataSourceProvider._();
|
||||
|
||||
/// Provider for settings local data source
|
||||
/// This is kept alive as it's a dependency injection provider
|
||||
|
||||
final class SettingsLocalDataSourceProvider
|
||||
extends
|
||||
$FunctionalProvider<
|
||||
SettingsLocalDataSource,
|
||||
SettingsLocalDataSource,
|
||||
SettingsLocalDataSource
|
||||
>
|
||||
with $Provider<SettingsLocalDataSource> {
|
||||
/// Provider for settings local data source
|
||||
/// This is kept alive as it's a dependency injection provider
|
||||
const SettingsLocalDataSourceProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
retry: null,
|
||||
name: r'settingsLocalDataSourceProvider',
|
||||
isAutoDispose: false,
|
||||
dependencies: null,
|
||||
$allTransitiveDependencies: null,
|
||||
);
|
||||
|
||||
@override
|
||||
String debugGetCreateSourceHash() => _$settingsLocalDataSourceHash();
|
||||
|
||||
@$internal
|
||||
@override
|
||||
$ProviderElement<SettingsLocalDataSource> $createElement(
|
||||
$ProviderPointer pointer,
|
||||
) => $ProviderElement(pointer);
|
||||
|
||||
@override
|
||||
SettingsLocalDataSource create(Ref ref) {
|
||||
return settingsLocalDataSource(ref);
|
||||
}
|
||||
|
||||
/// {@macro riverpod.override_with_value}
|
||||
Override overrideWithValue(SettingsLocalDataSource value) {
|
||||
return $ProviderOverride(
|
||||
origin: this,
|
||||
providerOverride: $SyncValueProvider<SettingsLocalDataSource>(value),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
String _$settingsLocalDataSourceHash() =>
|
||||
r'fe7c05c34da176079f5bb95cc3a410d5fb5f3f68';
|
||||
Reference in New Issue
Block a user