origin property

Origin get origin

The origin of this data source.

Returns

  • Origin: The origin enum describing where the data comes from.

See also:

Implementation

Origin get origin {
  final OperationResult resultString = objectMethod(
    pointerId,
    'DataSourceContainer',
    'getOrigin',
  );

  return OriginExtension.fromId(resultString['result']);
}