isChargeStop property

bool get isChargeStop

Check if instruction is a stop for battery charge.

Returns

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

Throws

  • An exception if it fails.

Implementation

bool get isChargeStop {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'EVRouteInstruction',
    'isChargeStop',
  );

  return resultString['result'];
}