description property

String description

A brief narrative description (abstract) of this WMS layer.

Implementation

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