format property

TileImageFormat format

The format of the tile images.

If there's an error the return value is TileImageFormat.unknown.

Implementation

TileImageFormat get format {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_TileInfo_getFormat(
      _handle,
      errorHandler,
    );
  });
  return TileImageFormat._fromCoreValue(
    coreValue,
  );
}