ResponseType class

Inheritance

Properties

hashCode int
The hash code for this object.
read-onlyinherited
name String
This enum's name, as specified in the .proto file.
finalinherited
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited
value int
This enum's integer value, as specified in the .proto file.
finalinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed.
inherited
toString() String
Returns this enum's name or the value if names are not represented.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

valueOf(int value) ResponseType

Constants

RESPONSE_TYPE_CODE → const ResponseType
ResponseType._(4, 'RESPONSE_TYPE_CODE')
RESPONSE_TYPE_CODE_ID_TOKEN → const ResponseType
ResponseType._(6, 'RESPONSE_TYPE_CODE_ID_TOKEN')
RESPONSE_TYPE_CODE_ID_TOKEN_TOKEN → const ResponseType
ResponseType._(8, 'RESPONSE_TYPE_CODE_ID_TOKEN_TOKEN')
RESPONSE_TYPE_CODE_TOKEN → const ResponseType
ResponseType._(7, 'RESPONSE_TYPE_CODE_TOKEN')
RESPONSE_TYPE_ID_TOKEN → const ResponseType
ResponseType._(2, 'RESPONSE_TYPE_ID_TOKEN')
RESPONSE_TYPE_ID_TOKEN_TOKEN → const ResponseType
ResponseType._(5, 'RESPONSE_TYPE_ID_TOKEN_TOKEN')
RESPONSE_TYPE_NONE → const ResponseType
ResponseType._(1, 'RESPONSE_TYPE_NONE')
RESPONSE_TYPE_TOKEN → const ResponseType
ResponseType._(3, 'RESPONSE_TYPE_TOKEN')
RESPONSE_TYPE_UNSET → const ResponseType
ResponseType._(0, 'RESPONSE_TYPE_UNSET')
values → const List<ResponseType>
<ResponseType>[RESPONSE_TYPE_UNSET, RESPONSE_TYPE_NONE, RESPONSE_TYPE_ID_TOKEN, RESPONSE_TYPE_TOKEN, RESPONSE_TYPE_CODE, RESPONSE_TYPE_ID_TOKEN_TOKEN, RESPONSE_TYPE_CODE_ID_TOKEN, RESPONSE_TYPE_…