endSoC property

double get endSoC

Get SoC at route segment end.

Returns

  • The SoC percentage at the segment end.

Implementation

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

  return resultString['result'];
}