updateVote method

  1. @override
Future<UpdateVote> updateVote({
  1. required String distinctId,
  2. required String targetId,
  3. required String category,
})
override

Implementation

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