Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- 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();
- }
- }
|