grade property

int grade

Implementation

int get grade => _getAttribute<int>(kGrade, 0);
void grade=(int? x)

pass null to remove key from attributes

Implementation

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