Region class

Represents a physical region, the middle precision level for this library

In JSON format, the instance for Badakhshan might look like:

{
  "id": 3901,
  "name": "Badakhshan",
  "state_code": "BDS",
  "latitude": 36.73477250,
  "longitude": 70.81199530,
  "type": null,
  "cities": [
    // ...
    {
      "id": 68,
      "name": "Fayzabad",
      "latitude": 37.11664000,
      "longitude": 70.58002000
    },
    // ...
  ]
}
Inheritance
Available Extensions
Annotations
  • @immutable
  • @JsonSerializable()

Constructors

Region({required int id, required int parentId = -1, required String name, required String? type, required String stateCode, required List<City> cities, required double longitude, required double latitude})
const
Region.fromJson(Map<String, dynamic> json)
Creates a new Region from JSON.
factory

Properties

cities List<City>
A list of City instances located in this Region
final
hashCode int
The hash code for this object.
no setterinherited
id int
The unique identifier for this data, like 1
finalinherited
latitude double
The longitude coordinate for this data, like 65.00000000
finalinherited
longitude double
The longitude coordinate for this data, like 33.00000000
finalinherited
name String
The human name of this data, like Afghanistan
finalinherited
parentId int
finalinherited
props List<Object?>
The list of properties that will be used to determine whether two instances are equal.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
stateCode String
The short code for this state, often used in mailing addresses, like BDS for Badakhshan
final
stringify bool?
If set to true, the toString method will be overridden to output this instance's props.
no setterinherited
type String?
If set, the type of region, otherwise null. When set, the value might look like: province, municipality, autonomous region, etc.
final

Methods

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

Operators

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