Address class

Адрес в виде набора отдельных компонентов.

Constructors

Address({required List<AddressAdmDiv> drillDown, required List<AddressComponent> components, required String? buildingName, required String? postCode, required String? buildingCode, required String? fiasCode, required String? addressComment})
const

Properties

addressComment String?
Комментарий к адресу. Пример: "301 офис; 9 этаж"
final
buildingCode String?
Уникальный почтовый код здания.
final
buildingName String?
Название здания.
final
components List<AddressComponent>
Полный адрес объекта может содержать несколько отдельных адресных компонент.
final
drillDown List<AddressAdmDiv>
Набор объектов административного деления, в которых находится описываемый объект.
final
fiasCode String?
Код ФИАС объекта.
final
hashCode int
The hash code for this object.
no setteroverride
postCode String?
Почтовый индекс.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

copyWith({List<AddressAdmDiv>? drillDown, List<AddressComponent>? components, Optional<String?>? buildingName, Optional<String?>? postCode, Optional<String?>? buildingCode, Optional<String?>? fiasCode, Optional<String?>? addressComment}) Address
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