ChargingStation constructor

ChargingStation(
  1. String? id,
  2. String? name,
  3. ChargingConnectorAttributes? connectorAttributes
)

Creates a new instance.

  • id Identifier of this charging station. It can only be null when custom charging stations from non-HERE datasets have been injected on the HERE platform. By default, with HERE datasets it is guranteed to be not null.
  • name Human readable name of this charging station. It can be null when there is no name associated with the station.
  • connectorAttributes Details of the connector suggested to be used.

Implementation

ChargingStation(this.id, this.name, this.connectorAttributes)
    : brand = null, chargePointOperator = null, matchingEMobilityServiceProviders = [];