10 lines
313 B
Dart
10 lines
313 B
Dart
import 'package:get/get.dart';
|
|
|
|
import '../model/RiskProfileModel/risk_profile_ques_answer_model.dart';
|
|
|
|
class RiskProfileController extends GetxController {
|
|
RiskProfileQuestionAnswerModel riskProfileQuestionAnswerModel =
|
|
RiskProfileQuestionAnswerModel();
|
|
List<Map<String, String>> selectedData = [];
|
|
}
|