kopia lustrzana https://gitlab.com/mysocialportal/relatica
15 wiersze
438 B
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();
|