title property
The layer's human-readably title.
The title property is intended for use as a human-readable layer identification. See WfsLayerInfo.name for a uniquely-identifying name.
Implementation
String get title {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_WFSLayerInfo_getTitle(
_handle,
errorHandler,
);
});
return stringHandle.toDartString();
}