RasterTileSourceLoadResultHandler constructor

RasterTileSourceLoadResultHandler(
  1. void loadedLambda(
    1. TileKey,
    2. Uint8List,
    3. TileSourceTileMetadata
    ),
  2. void failedLambda(
    1. TileKey
    )
)

Result handler of a load tile request.

Implementation

factory RasterTileSourceLoadResultHandler(
  void Function(TileKey, Uint8List, TileSourceTileMetadata) loadedLambda,
  void Function(TileKey) failedLambda,

) => RasterTileSourceLoadResultHandler$Lambdas(
  loadedLambda,
  failedLambda,

);