updateVote method
Implementation
@override
Future<UpdateVote> updateVote({
required String distinctId,
required String targetId,
required String category,
}) {
return datasource.updateVote(
distinctId: distinctId,
targetId: targetId,
category: category,
);
}