isHome property

bool get isHome

Implementation

bool get isHome => _data[8];
set isHome (bool f)

Implementation

void set isHome(bool f) => f ? _data.setBit(8) : _data.clearBit(8);