chargingTime property

int get chargingTime

Get charge time during instruction 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,
    'EVRouteInstruction',
    'getChargingTime',
  );

  return resultString['result'];
}