18 lines
619 B
Dart
18 lines
619 B
Dart
import 'package:lamiter/Class/Question/scq.dart';
|
|
|
|
class HealthIndexForm {
|
|
late Map<String, SCQAnswer> scores;
|
|
|
|
HealthIndexForm() {
|
|
scores = {
|
|
'_health_index_question_1': SCQAnswer(index: 0, score: 0),
|
|
'_health_index_question_2': SCQAnswer(index: 0, score: 0),
|
|
'_health_index_question_3': SCQAnswer(index: 0, score: 0),
|
|
'_health_index_question_4': SCQAnswer(index: 0, score: 0),
|
|
'_health_index_question_5': SCQAnswer(index: 0, score: 0),
|
|
'_health_index_question_6': SCQAnswer(index: 0, score: 0),
|
|
'_health_index_question_7': SCQAnswer(index: 0, score: 0),
|
|
};
|
|
}
|
|
}
|