GrantType 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) GrantType

Constants

GRANT_TYPE_AUTHORIZATION_CODE → const GrantType
GrantType._(2, 'GRANT_TYPE_AUTHORIZATION_CODE')
GRANT_TYPE_CLIENT_CREDENTIALS → const GrantType
GrantType._(1, 'GRANT_TYPE_CLIENT_CREDENTIALS')
GRANT_TYPE_DEVICE_CODE → const GrantType
GrantType._(5, 'GRANT_TYPE_DEVICE_CODE')
GRANT_TYPE_IMPLICIT → const GrantType
GrantType._(3, 'GRANT_TYPE_IMPLICIT')
GRANT_TYPE_REFRESH_TOKEN → const GrantType
GrantType._(4, 'GRANT_TYPE_REFRESH_TOKEN')
GRANT_TYPE_UNSET → const GrantType
GrantType._(0, 'GRANT_TYPE_UNSET')
values → const List<GrantType>
<GrantType>[GRANT_TYPE_UNSET, GRANT_TYPE_CLIENT_CREDENTIALS, GRANT_TYPE_AUTHORIZATION_CODE, GRANT_TYPE_IMPLICIT, GRANT_TYPE_REFRESH_TOKEN, GRANT_TYPE_DEVICE_CODE]