call method Null safety

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

Executes use case without any parameters.

Implementation

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