Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- import 'package:flutter/material.dart';
-
- class VoucherChangeProvider with ChangeNotifier {
- int voucher = 0;
-
- initVoucher(int newValue) {
- voucher = newValue;
- notifyListeners();
- }
-
- addVoucher(int newValue) {
- voucher += newValue;
- notifyListeners();
- }
-
- subVoucher(int newValue) {
- voucher -= newValue;
- notifyListeners();
- }
- }
|