ContactInfo class
Способ связаться с организацией.
Constructors
- ContactInfo({required String type, required String displayText, required String value, required String? comment})
-
const
Properties
- comment → String?
-
Уточняющая информация о контакте.
final
- displayText → String
-
Значение контакта для вывода на экран.
final
- hashCode → int
-
The hash code for this object.
no setteroverride
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- type → String
-
Тип контакта. Один из следующих:
email — электронная почта
website — сайт
phone — телефон
fax — факс
pobox — абонентский ящик
icq
jabber
skype
vkontakte
twitter
odnoklassniki
youtube
linkedin
googleplus
pinterest
whatsapp
viber
telegram
final
- value → String
-
Техническое значение контакта. В зависимости от типа контакта имеет следующую семантику:
email — адрес почты
website — полный url
phone — номер телефона в международном формате, например: "+73831234567"
fax — номер телефона в международном формате, например: "+73831234567"
pobox — адрес почтового ящика
icq — идентификатор пользователя
jabber — идентификатор пользователя
skype — идентификатор пользователя
vkontakte — полный url
twitter — полный url
odnoklassniki — полный url
youtube — полный url
linkedin — полный url
googleplus — полный url
pinterest — полный url
whatsapp — полный url
viber — полный url
telegram — полный url
final
Methods
-
copyWith(
{String? type, String? displayText, String? value, Optional< String?> ? comment}) → ContactInfo -
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