TKK_E32230859/lib/app/modules/patient-dashboard/controllers/patient_dashboard_controlle...

24 lines
369 B
Dart

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