description property

String description

The layer's description (abstract).

The description property contains the content from the Abstract field in the WFS GetCapabilities response.

Implementation

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