beginSoC property

double get beginSoC

Get SoC at the instruction begin.

Returns

  • The SoC percentage at the segment start.

Implementation

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

  return resultString['result'];
}