isLiked property

bool isLiked

Implementation

bool get isLiked => _data[2];
void isLiked=(bool f)

Implementation

void set isLiked(bool f) => f ? _data.setBit(2) : _data.clearBit(2);