beginSoC property

double get beginSoC

Get SoC at route segment begin.

Returns

  • The SoC percentage at the segment start.

Implementation

double get beginSoC {
  final OperationResult resultString = objectMethod(
    pointerId,
    'EVRouteSegment',
    'getBeginSoC',
  );

  return resultString['result'];
}