10 lines
415 B
Dart
10 lines
415 B
Dart
|
|
import 'package:get/get.dart';
|
||
|
|
import 'package:traderscircuit/model/ProductsModel/call_recommendations_model.dart';
|
||
|
|
|
||
|
|
class ProductsController extends GetxController {
|
||
|
|
RxBool isLoaded = true.obs;
|
||
|
|
CallRecommendationsModel swingTradeModel = CallRecommendationsModel();
|
||
|
|
CallRecommendationsModel multibaggerModel = CallRecommendationsModel();
|
||
|
|
CallRecommendationsModel optionModel = CallRecommendationsModel();
|
||
|
|
}
|