destinationSoC property

double get destinationSoC

Get destination SoC.

Returns

  • The state of charge at the destination point, as a percentage.

Implementation

double get destinationSoC {
  final OperationResult resultString = objectMethod(
    pointerId,
    'EVRoute',
    'getDestinationSoC',
  );

  return resultString['result'];
}