fontLocalDataSourceProvider top-level property

Provider<FontLocalDataSource> fontLocalDataSourceProvider
final

Implementation

final fontLocalDataSourceProvider = Provider<FontLocalDataSource>((ref) {
  final sharedPreferences = ref.watch(sharedPreferencesProvider).asData!.value;
  return FontLocalDataSourceImpl(sharedPreferences);
});