name property

String name

The layer's uniquely-identifying name.

Layers from a WfsService, described by WfsLayerInfo objects, represent the "feature types" defined in the WFS standard. The name property is intended for use as a unique identifier for the layer. See WfsLayerInfo.title for a human-readable name.

Implementation

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