wkText property

String wkText

The well-known text of this geographic transformation step instance.

This value does not respect the GeographicTransformationStep.isInverse property.

Implementation

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