length property

Future<int> length

Retrieve the number of tiles belonging to this store

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 length => all.then((a) => a.length);