WantedPersonCoordinates class

Represents the coordinates of a wanted person.

Constructors

WantedPersonCoordinates({double? longitude, double? latitude, String? formatted})
Creates a new WantedPersonCoordinates object.
const
WantedPersonCoordinates.empty()
Creates an empty WantedPersonCoordinates object.
WantedPersonCoordinates.fromJson(Map<String, dynamic> json)
Creates a WantedPersonCoordinates object from a JSON object.
factory

Properties

formatted String?
The formatted address of the location.
final
hashCode int
The hash code for this object.
no setteroverride
isEmpty bool
Whether or not this object is empty.
no setter
isNotEmpty bool
Whether or not this object is not empty.
no setter
latitude double?
The latitude of the location.
final
longitude double?
The longitude of the location.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Returns a JSON representation of this object.
toString() String
A string representation of this object.
override

Operators

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