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.
20 lines
359 B
Dart
20 lines
359 B
Dart
import '../classes/location.dart';
|
|
|
|
List<Location> europe = [
|
|
Location(
|
|
region: 'Europe',
|
|
location: 'Berlin',
|
|
locale: 'de_DE.UTF-8 UTF-8',
|
|
),
|
|
Location(
|
|
region: 'Europe',
|
|
location: 'Brussels',
|
|
locale: 'fr_BE.UTF-8 UTF-8',
|
|
),
|
|
Location(
|
|
region: 'Europe',
|
|
location: 'Copenhagen',
|
|
locale: 'da_DK.UTF-8 UTF-8',
|
|
),
|
|
];
|