clearAllAcceptedNdaUsers function
- BuildContext context
Clear all users who accepted the non-disclosure agreement
Implementation
Future<bool> clearAllAcceptedNdaUsers(BuildContext context) {
final container = ProviderScope.containerOf(context);
final notifier = container.read(acceptedNdaUsersProvider.notifier);
return notifier.setValue([]);
}