totalChargingTime property

int get totalChargingTime

Get total charging time in seconds.

Returns

  • Total charging time required for the trip, in seconds.

Implementation

int get totalChargingTime {
  final OperationResult resultString = objectMethod(
    pointerId,
    'EVRoute',
    'getTotalChargingTime',
  );

  return resultString['result'];
}