ConnectorSDKEventType enum

Canonical event type values matching the Quiltt Connector JS SDK.

Values are identical to the ConnectorSDKEventType enum in @quiltt/core and are consistent across mobile and web platforms.

The mobile WebView receives PascalCase URL-scheme hosts from the connector web app (e.g. quilttconnector://ExitSuccess). fromUrlHost maps these to the correct enum case — the same pattern used by the iOS and Android SDKs.

Inheritance
Available extensions

Values

opened → const ConnectorSDKEventType
const ConnectorSDKEventType('opened')
loaded → const ConnectorSDKEventType
const ConnectorSDKEventType('loaded')
exitSuccessful → const ConnectorSDKEventType
const ConnectorSDKEventType('exited.successful')
exitAborted → const ConnectorSDKEventType
const ConnectorSDKEventType('exited.aborted')
exitErrored → const ConnectorSDKEventType
const ConnectorSDKEventType('exited.errored')

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 String
The canonical string value used by the Quiltt JS SDK.
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

Static Methods

fromUrlHost(String host) ConnectorSDKEventType?
Maps a URL-scheme host (as received from the WebView on mobile) to the corresponding ConnectorSDKEventType.
fromValue(String value) ConnectorSDKEventType?
Parses a canonical string value back to ConnectorSDKEventType.

Constants

values → const List<ConnectorSDKEventType>
A constant List of the values in this enum, in order of their declaration.