description property

String description

A description of the GeoPackage feature table.

Implementation

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