You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
uco-mobile-poc/lib/app/modules/cheque_request/controllers/cheque_request_controller.dart

24 lines
363 B
Dart

import 'package:get/get.dart';
class ChequeRequestController extends GetxController {
//TODO: Implement ChequeRequestController
final count = 0.obs;
@override
void onInit() {
super.onInit();
}
@override
void onReady() {
super.onReady();
}
@override
void onClose() {
super.onClose();
}
void increment() => count.value++;
}