8 lines
221 B
Dart
8 lines
221 B
Dart
abstract class OnboardingRepository {
|
|
/// Returns true when the user accepted the onboarding agreement
|
|
Future<bool> isOnboarded();
|
|
|
|
/// Sets the onboarding completion flag
|
|
Future<void> setOnboarded(bool value);
|
|
}
|