readTile abstract method

FutureOr<BackendTile?> readTile({
  1. required String url,
  2. String? storeName,
})

Retrieve a raw tile by the specified URL

If storeName is specified, the tile will be limited to the specified store - if it exists in another store, it will not be returned.

Implementation

FutureOr<BackendTile?> readTile({
  required String url,
  String? storeName,
});