phase3: improve arg-bang handler (allow ! in chains, ; terminator). 574->440
This commit is contained in:
@@ -96,7 +96,7 @@ class MobileBuyServiceState extends State<MobileBuyService> {
|
||||
onChanged: (newValue) {
|
||||
print('newValue $newValue');
|
||||
setState(() {
|
||||
selectedPlan = newValue;
|
||||
selectedPlan = newValue!;
|
||||
price = selectedPlan.value['price'];
|
||||
tax = selectedPlan.value['price'] * selectedPlan.value['tax'];
|
||||
paymentAmount = price + tax;
|
||||
|
||||
Reference in New Issue
Block a user