call method

  1. @override
Future<Either<Failure, List<Comment>>> call(
  1. String taskId
)
override

Implementation

@override
Future<Either<Failure, List<Comment>>> call(String taskId) async {
  return await repository.getComments(taskId);
}