hasChargeStop property

bool get hasChargeStop

Check if segment ends with a charge stop instruction.

Returns

  • True if there is a charging stop in this segment, false otherwise.

Throws

  • An exception if it fails.

Implementation

bool get hasChargeStop {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'EVRouteSegment',
    'hasChargeStop',
  );

  return resultString['result'];
}