Skip to main content

checkAndSetTheIsLiked method

void checkAndSetTheIsLiked ()

Implementation

void checkAndSetTheIsLiked() {
setIsLiked(val: false);
for (var i = 0; i < _likedBy.length; i++) {
if (_likedBy[i].sId == _user.id) {
setIsLiked();
}
}
}