ResponseStatus enum

Inheritance
Available extensions

Values

ok → const ResponseStatus

indicates that no errors occurred; the address was successfully parsed and at least one geocode was returned.

const ResponseStatus('OK')
zeroResult → const ResponseStatus

indicates that the geocode was successful but returned no results. This may occur if the geocoder was passed a non-existent address.

const ResponseStatus('ZERO_RESULTS')
overDailyLimit → const ResponseStatus

indicates any of the following: The API key is missing or invalid. Billing has not been enabled on your account. A self-imposed usage cap has been exceeded. The provided method of payment is no longer valid (for example, a credit card has expired).

const ResponseStatus('OVER_DAILY_LIMIT')
overQueryLimit → const ResponseStatus

indicates that you are over your quota.

const ResponseStatus('OVER_QUERY_LIMIT')
requestDenied → const ResponseStatus

REQUEST_DENIED indicating that your request was denied, generally because: The request is missing an API key. The key parameter is invalid.

const ResponseStatus('REQUEST_DENIED')
invalidRequest → const ResponseStatus

generally indicates that the query (address, components or latlng) is missing.

const ResponseStatus('INVALID_REQUEST')
unknownError → const ResponseStatus

indicates that the request could not be processed due to a server error. The request may succeed if you try again.

const ResponseStatus('UNKNOWN_ERROR')

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
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

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

Constants

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