goalCents property

int goalCents

Implementation

int get goalCents => _getAttribute<int>(kGoalCents, 0);
void goalCents=(int? x)

Optional. During the donation period of this campaign, the running total of donations will be tracked against this number

pass null to remove key from attributes

Implementation

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