relatica/lib/riverpod_controllers/globals_services.dart

15 wiersze
438 B
Dart

import 'dart:io';
import 'package:riverpod_annotation/riverpod_annotation.dart';
import 'package:shared_preferences/shared_preferences.dart';
part 'globals_services.g.dart';
@Riverpod(keepAlive: true)
SharedPreferences sharedPreferences(SharedPreferencesRef ref) =>
throw UnimplementedError();
@Riverpod(keepAlive: true)
Directory applicationSupportDirectory(ApplicationSupportDirectoryRef ref) =>
throw UnimplementedError();