product recommendations api integration - pending

This commit is contained in:
jayesh
2024-05-02 18:41:33 +05:30
parent ce6249e494
commit ead927fb0f
14 changed files with 943 additions and 263 deletions

View File

@@ -0,0 +1,9 @@
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();
}