CallEndedReason enum
How a call ended, as reported to the system call history.
Values mirror CXCallEndedReason on iOS.
Values
- failed → const CallEndedReason
-
The call failed, for example because the network dropped.
const CallEndedReason(1) - remoteEnded → const CallEndedReason
-
The remote side ended the call.
const CallEndedReason(2) - unanswered → const CallEndedReason
-
Nobody picked up before the call timed out. Shows as a missed call.
const CallEndedReason(3) - answeredElsewhere → const CallEndedReason
-
The call was answered on another of the user's devices.
const CallEndedReason(4) - declinedElsewhere → const CallEndedReason
-
The call was declined on another of the user's devices.
const CallEndedReason(5)
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - rawValue → int
-
Raw value passed to the platform, matching
CXCallEndedReason.final - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
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
Constants
-
values
→ const List<
CallEndedReason> - A constant List of the values in this enum, in order of their declaration.