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.
40 lines
763 B
Dart
40 lines
763 B
Dart
import 'package:jade_gui/classes/location.dart';
|
|
|
|
List<Location> canada = [
|
|
Location(
|
|
region: "canada",
|
|
location: "Atlantic",
|
|
locale: "en_CA.UTF-8 UTF-8",
|
|
),
|
|
Location(
|
|
region: "canada",
|
|
location: "Central",
|
|
locale: "en_CA.UTF-8 UTF-8",
|
|
),
|
|
Location(
|
|
region: "canada",
|
|
location: "Eastern",
|
|
locale: "en_CA.UTF-8 UTF-8",
|
|
),
|
|
Location(
|
|
region: "canada",
|
|
location: "Mountain",
|
|
locale: "en_CA.UTF-8 UTF-8",
|
|
),
|
|
Location(
|
|
region: "canada",
|
|
location: "Newfoundland",
|
|
locale: "en_CA.UTF-8 UTF-8",
|
|
),
|
|
Location(
|
|
region: "canada",
|
|
location: "Pacific",
|
|
locale: "en_CA.UTF-8 UTF-8",
|
|
),
|
|
Location(
|
|
region: "canada",
|
|
location: "Yukon",
|
|
locale: "en_CA.UTF-8 UTF-8",
|
|
),
|
|
];
|