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.
PatientApp-KKUMC/lib/models/Appointments/toDoCountProviderModel.dart

17 lines
355 B
Dart

import 'package:flutter/cupertino.dart';
class ToDoCountProviderModel with ChangeNotifier {
int _count;
bool _isShowBadge = false;
int get count => _count == null ? 0 : _count;
bool get isShowBadge => _isShowBadge;
void setState(int count, bool isShowBadge) {
_count = count;
_isShowBadge = isShowBadge;
notifyListeners();
}
}