title property

String title

A descriptive (human-readable) title for the OGC API - Features feature collection.

Unlike OgcFeatureCollectionInfo.collectionId, the title property does not uniquely identify an OGC API - Features feature collection. Instead, it provides a human-readable name for the collection.

Implementation

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