endSoC property

double get endSoC

Get SoC at the instruction end.

Returns

  • The SoC percentage at the segment end.

Implementation

double get endSoC {
  final OperationResult resultString = objectMethod(
    pointerId,
    'EVRouteInstruction',
    'getEndSoC',
  );

  return resultString['result'];
}