Files
retail/lib/features/settings/presentation/providers/settings_datasource_provider.g.dart
Phuoc Nguyen b94c158004 runable
2025-10-10 16:38:07 +07:00

66 lines
2.0 KiB
Dart

// 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';