call method Null safety

  1. @override
Future<Result<List<Photo>>> call()
override

Executes use case without any parameters.

Implementation

@override
Future<Result<List<Photo>>> call() {
  return _repository.getAllPhotos();
}