totalChargingTime property
Get total charging time in seconds.
Returns
- Total charging time required for the trip, in seconds.
Throws
- An exception if it fails.
Implementation
int get totalChargingTime {
final OperationResult resultString = objectMethod(
_pointerId,
'EVRoute',
'getTotalChargingTime',
);
return resultString['result'];
}