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.
15 lines
279 B
Dart
15 lines
279 B
Dart
3 years ago
|
import 'package:jade_gui/classes/location.dart';
|
||
3 years ago
|
|
||
|
List<Location> chile = [
|
||
|
Location(
|
||
|
region: "Chile",
|
||
|
location: "Continental",
|
||
|
locale: "es_CL.UTF-8 UTF-8",
|
||
|
),
|
||
|
Location(
|
||
|
region: "Chile",
|
||
|
location: "EasterIsland",
|
||
|
locale: "es_CL.UTF-8 UTF-8",
|
||
|
),
|
||
|
];
|