NoResponseReason enum
Reason for no response to co-guest invitation sent by host or co-guest request initiated by audience
This enum describes why a co-guest request or invitation did not receive a response from the other party.
Note: The system automatically triggers no-response events when timeout expires or certain state conflicts occur.
Response Scenarios
The following table shows the trigger conditions for each reason
| Reason | Trigger Condition | Example Scenario |
|---|---|---|
timeout |
Response timeout | Host did not respond to application within 30 seconds |
alreadySeated |
Target user already on seat | Audience is already co-guesting with another host |
Values
- timeout → const NoResponseReason
-
Request timeout
const NoResponseReason(0) - alreadySeated → const NoResponseReason
-
User already on seat
const NoResponseReason(1)
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 - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- value → int
-
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
Constants
-
values
→ const List<
NoResponseReason> - A constant List of the values in this enum, in order of their declaration.