player id added, content bytes api

This commit is contained in:
jayesh
2024-04-10 12:56:06 +05:30
parent 317ee8e07e
commit 486ed2ae96
8 changed files with 710 additions and 267 deletions

View File

@@ -0,0 +1,11 @@
import 'package:get/get.dart';
import 'package:traderscircuit/model/ContentBytesModel/content_bytes_categories_model.dart';
import 'package:traderscircuit/model/ContentBytesModel/content_bytes_model.dart';
class ContentBytesController extends GetxController {
ContentBytesCategoriesModel contentBytesCategoriesModel =
ContentBytesCategoriesModel();
ContentBytesModel contentBytesModel = ContentBytesModel();
int filterId = 0;
RxBool isApiCalling = true.obs;
}