amountCents property

int amountCents

Implementation

int get amountCents => _getAttribute<int>(kAmountCents, 0);
void amountCents=(int? x)

The amount pledged

pass null to remove key from attributes

Implementation

set amountCents(int? x) => (x == null)
    ? _attributes.remove(kAmountCents)
    : _attributes[kAmountCents] = x;