endSoC property

double get endSoC

Get SoC at the instruction end.

Returns

  • The SoC percentage at the segment end.

Throws

  • An exception if it fails.

Implementation

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

  return resultString['result'];
}