FCXHandle class

Dart representation of CXHandle from iOS CallKit Framework

A means by which a call recipient can be reached, such as a phone number or email address.

When the telephony provider receives an incoming call or the user starts an outgoing call, the other caller is identified by a CXHandle object.

For a caller identified by a phone number, the handle type is FCXHandleType.PhoneNumber and the value is a sequence of digits.

For a caller identified by an email address, the handle type is FCXHandleType.EmailAddress and the value is an email address.

For a caller identified in any other way, the handle type is FCXHandleType.Generic and the value typically follows some domain-specific format, such as a username, numeric ID, or URL.

Constructors

FCXHandle(FCXHandleType type, String value)
Initializes a new handle of a given type with the specified value.

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
type FCXHandleType
The type of the handle.
final
value String
The value of the handle.
final

Methods

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.
inherited