mirror of
https://github.com/pd4d10/git-touch.git
synced 2026-04-27 18:11:54 -05:00
12 lines
198 B
Dart
12 lines
198 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class NotificationModel with ChangeNotifier {
|
|
int _count = 0;
|
|
int get count => _count;
|
|
|
|
setCount(int v) {
|
|
_count = v;
|
|
notifyListeners();
|
|
}
|
|
}
|