memberCount property

int memberCount

Implementation

int get memberCount => _getAttribute<int>(kMemberCount, 0);
void memberCount=(int? x)

pass null to remove key from attributes

Implementation

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