getAll method

Future<ResponseListDTO<PhotoDTO>> getAll({
  1. PhotoQuery? query,
})

Implementation

Future<ResponseListDTO<PhotoDTO>> getAll({PhotoQuery? query}) async {
  return await _repository!.getAll(
    query: query,
  );
}