chargingTime property

int get chargingTime

Get charge time during segment begin - end interval.

Returns

  • Charging time in seconds required for this segment.

Throws

  • An exception if it fails.

Implementation

int get chargingTime {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'EVRouteSegment',
    'getChargingTime',
  );

  return resultString['result'];
}