type property
Retrieves the specific type of the projection.
Returns
- The type of the projection as an ProjectionType enumeration.
Implementation
ProjectionType get type {
final OperationResult resultString = objectMethod(
_pointerId,
'Projection',
'type',
);
return ProjectionTypeExtension.fromId(resultString['result']);
}