id property

String id

The tile matrix identifier.

Implementation

String get id {
  final stringHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_WMTSTileMatrix_getId(
      _handle,
      errorHandler,
    );
  });
  return stringHandle.toDartString();
}