Files
smooth-app/packages/smooth_app/lib/query/questions_query.dart
monsieurtanuki af9f28bf2c feat: 4102 - bigger hunger games batch (10) (#4104)
Impacted files:
* `app_en.arb`: added the "next n questions" label for hunger games
* `app_fr.arb`: added the "next n questions" label for hunger games
* `congrats.dart`: "continue" button label as a String parameter
* `product_questions_query.dart`: added a `count` parameter
* `product_questions_widget.dart`: added the `count` parameter
* `question_page.dart`: different `count` parameters; set the "continue" button label
* `questions_query.dart`: added a `count` parameter
* `random_questions_query.dart`: added a `count` parameter
* `robotoff_insight_helper.dart`: added the `count` parameter
2023-06-09 14:32:15 +02:00

13 lines
314 B
Dart

import 'package:openfoodfacts/openfoodfacts.dart';
import 'package:smooth_app/database/local_database.dart';
/// Robotoff questions helper.
abstract class QuestionsQuery {
const QuestionsQuery();
Future<List<RobotoffQuestion>> getQuestions(
final LocalDatabase localDatabase,
final int count,
);
}