Aggregate class

Обобщенное описание станции зарядки автомобилей.

Constructors

Aggregate({required int connectorsFree, required int connectorsTotal, required bool isActive, required bool isBusy, required int power})
const

Properties

connectorsFree int
Количество доступных коннекторов.
final
connectorsTotal int
Общее количество коннекторов (кроме недоступных).
final
hashCode int
The hash code for this object.
no setteroverride
isActive bool
Статус активности. true, если есть хотя бы один доступный, зарезервированный или на зарядке коннектор.
final
isBusy bool
Статус занятости. true, если половина или более коннекторов заняты.
final
power int
Максимальная мощность из всех коннекторов.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

copyWith({int? connectorsFree, int? connectorsTotal, bool? isActive, bool? isBusy, int? power}) Aggregate
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
override