lastPlanFrom property

String lastPlanFrom

Implementation

String get lastPlanFrom => _getAttribute<String>(kLastPlanFrom, '');
void lastPlanFrom=(String? x)

pass null to remove key from attributes

Implementation

set lastPlanFrom(String? x) => (x == null)
    ? _attributes.remove(kLastPlanFrom)
    : _attributes[kLastPlanFrom] = x;