getDataTypeDescription method

String getDataTypeDescription(
  1. DataType type
)

Get a textual description for a data type produced by this source.

Returns an empty string when the data type is not produced by this data source.

Parameters

  • type: The DataType for which the description is requested.

Returns

  • String: A description of the data type, or an empty string if not available.

Implementation

String getDataTypeDescription(final DataType type) {
  final OperationResult resultString = objectMethod(
    pointerId,
    'DataSourceContainer',
    'getDataTypeDescription',
    args: type.id,
  );

  return resultString['result'];
}