12 lines
475 B
Dart
12 lines
475 B
Dart
|
|
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;
|
||
|
|
}
|