storeLength property
int
get
storeLength
Retrieve the number of stored tiles in a store
For asynchronous version, see storeLengthAsync.
Only includes tiles stored, not necessarily all files.
Implementation
int get storeLength =>
int.tryParse(_csgSync('length', () => _access.tiles.listSync().length)) ??
0;