You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.2 KiB
Dart
65 lines
1.2 KiB
Dart
3 years ago
|
import 'package:jade_gui/classes/location.dart';
|
||
3 years ago
|
|
||
|
List<Location> us = [
|
||
|
Location(
|
||
|
region: "US",
|
||
|
location: "Alaska",
|
||
|
locale: "en_US.UTF-8 UTF-8",
|
||
|
),
|
||
|
Location(
|
||
|
region: "US",
|
||
|
location: "Aleutian",
|
||
|
locale: "en_US.UTF-8 UTF-8",
|
||
|
),
|
||
|
Location(
|
||
|
region: "US",
|
||
|
location: "Arizona",
|
||
|
locale: "en_US.UTF-8 UTF-8",
|
||
|
),
|
||
|
Location(
|
||
|
region: "US",
|
||
|
location: "Central",
|
||
|
locale: "en_US.UTF-8 UTF-8",
|
||
|
),
|
||
|
Location(
|
||
|
region: "US",
|
||
|
location: "Eastern",
|
||
|
locale: "en_US.UTF-8 UTF-8",
|
||
|
),
|
||
|
Location(
|
||
|
region: "US",
|
||
|
location: "East-Indiana",
|
||
|
locale: "en_US.UTF-8 UTF-8",
|
||
|
),
|
||
|
Location(
|
||
|
region: "US",
|
||
|
location: "Hawaii",
|
||
|
locale: "en_US.UTF-8 UTF-8",
|
||
|
),
|
||
|
Location(
|
||
|
region: "US",
|
||
|
location: "Indiana-Starke",
|
||
|
locale: "en_US.UTF-8 UTF-8",
|
||
|
),
|
||
|
Location(
|
||
|
region: "US",
|
||
|
location: "Michigan",
|
||
|
locale: "en_US.UTF-8 UTF-8",
|
||
|
),
|
||
|
Location(
|
||
|
region: "US",
|
||
|
location: "Mountain",
|
||
|
locale: "en_US.UTF-8 UTF-8",
|
||
|
),
|
||
|
Location(
|
||
|
region: "US",
|
||
|
location: "Pacific",
|
||
|
locale: "en_US.UTF-8 UTF-8",
|
||
|
),
|
||
|
Location(
|
||
|
region: "US",
|
||
|
location: "Samoa",
|
||
|
locale: "en_US.UTF-8 UTF-8",
|
||
|
),
|
||
|
];
|