Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- 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();
- }
- }
|