beginSoC property

double get beginSoC

Get SoC at the instruction begin.

Returns

  • The SoC percentage at the segment start.

Throws

  • An exception if it fails.

Implementation

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

  return resultString['result'];
}