Property getter and setter for amount:
@override num? get amount => _amount;
@override set amount(num? amount) { this._amount = amount; wrapped['amount'] = jsonLiteral(amount); }