git-touch-android-ios-app/lib/models/notification.dart

12 lines
198 B
Dart
Raw Normal View History

2019-09-02 14:40:20 +02:00
import 'package:flutter/material.dart';
class NotificationModel with ChangeNotifier {
int _count = 0;
int get count => _count;
setCount(int v) {
_count = v;
notifyListeners();
}
}