schoolTypes property

List schoolTypes

Implementation

List get schoolTypes => _getAttribute<List>(kSchoolTypes, []);
void schoolTypes=(List? x)

pass null to remove key from attributes

Implementation

set schoolTypes(List? x) => (x == null)
    ? _attributes.remove(kSchoolTypes)
    : _attributes[kSchoolTypes] = x;