title property

String title

The layer's human-readable title.

The title may not be unique. A layer with a title but no name describes is a container for sublayers.

Implementation

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