getAll method

Implementation

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