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.

Implementation

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

  return resultString['result'];
}