type property

ProjectionType get type

The projection type for this instance.

Returns the specific ProjectionType that identifies the concrete projection subclass represented by this object.

Returns

  • (ProjectionType) The projection type enumeration value.

Implementation

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

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