amount property

  1. @override
double? amount
override

Property getter and setter for amount:

Implementation

@override double? get amount => _amount;
  1. @override
void amount=(double? amount)
override

Implementation

@override set amount(double? amount) {
  this._amount = amount;
  wrapped['amount'] = jsonLiteral(amount);
}