13 lines
278 B
Dart
13 lines
278 B
Dart
import 'package:get/get.dart';
|
|
|
|
import '../Model/notificationmodel.dart';
|
|
|
|
|
|
class Notificationcontroller extends GetxController{
|
|
Rx<Notificationmodel> notificationdata =
|
|
Notificationmodel().obs;
|
|
RxInt pncount=0.obs;
|
|
RxInt cncount=0.obs;
|
|
RxInt dncount=0.obs;
|
|
|
|
} |