endingGrade property

String endingGrade

Implementation

String get endingGrade => _getAttribute<String>(kEndingGrade, '');
void endingGrade=(String? x)

pass null to remove key from attributes

Implementation

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