syncMessageLike method
Implementation
syncMessageLike(String channelId) async {
var lastActiveAt = await getLastActiveAt(
Channel.stableName,
channelId: channelId,
);
Event? res = await send(buildEvent(SyncModelMessageLike(
lastUpdatedAt: lastActiveAt,
channelId: channelId,
)));
if (res == null) {
return;
}
return _handle(res);
}