isCommon property

bool get isCommon

Check if this instruction is of common type.

A common type route instruction is part of a common type route segment, see RouteSegment.isCommon.

Returns

  • True if instruction is common type, false otherwise

Throws

  • An exception if it fails.

Implementation

bool get isCommon {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'RouteInstructionBase',
    'isCommon',
  );

  return resultString['result'];
}