type property

ProjectionType get type

Retrieves the specific type of the projection.

Returns

Implementation

ProjectionType get type {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'Projection',
    'type',
  );

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