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.

Implementation

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

  return resultString['result'];
}