createVote method
Implementation
@override
Future<CreateVote> createVote({
required String distinctId,
required String targetId,
required String category,
bool? toggle,
}) {
return datasource.createVote(
distinctId: distinctId,
targetId: targetId,
category: category,
toggle: toggle,
);
}