TwitterLoginStatus enum Null safety
The status after a Twitter login flow has completed.
Constructors
- TwitterLoginStatus()
-
const
Values
- loggedIn → const TwitterLoginStatus
-
The login was successful and the user is now logged in.
- cancelledByUser → const TwitterLoginStatus
-
The user cancelled the login flow.
- error → const TwitterLoginStatus
-
The Twitter login completed with an error
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent 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<
TwitterLoginStatus> -
A constant List of the values in this enum, in order of their declaration.
[loggedIn, cancelledByUser, error]