hits property

Future<int> hits

Retrieve the number of successful tile retrievals when browsing

Prefer using all when multiple statistics are required instead of getting them individually. Only one backend operation is required to get all the stats, and so is more efficient.

Implementation

Future<int> get hits => all.then((a) => a.hits);