name property

String name

The name of the datum transformation.

For multi-step transformations, the name contains the concatenated names of each step's transformation, separated by a plus sign '+'. If the transformation is inverted, the name starts with a tilde (~).

Implementation

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