title property

String title

The tile matrix set title.

Implementation

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