mirror of
https://github.com/flutter/samples.git
synced 2025-11-11 07:18:15 +00:00
Compass app (#2446)
This commit is contained in:
25
compass_app/app/testing/models/destination.dart
Normal file
25
compass_app/app/testing/models/destination.dart
Normal file
@@ -0,0 +1,25 @@
|
||||
// Copyright 2024 The Flutter team. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
import 'package:compass_app/domain/models/destination/destination.dart';
|
||||
|
||||
const kDestination1 = Destination(
|
||||
ref: 'ref1',
|
||||
name: 'name1',
|
||||
country: 'country1',
|
||||
continent: 'Europe',
|
||||
knownFor: 'knownFor1',
|
||||
tags: ['tags1'],
|
||||
imageUrl: 'imageUrl1',
|
||||
);
|
||||
|
||||
const kDestination2 = Destination(
|
||||
ref: 'ref2',
|
||||
name: 'name2',
|
||||
country: 'country2',
|
||||
continent: 'Europe',
|
||||
knownFor: 'knownFor2',
|
||||
tags: ['tags2'],
|
||||
imageUrl: 'imageUrl2',
|
||||
);
|
||||
Reference in New Issue
Block a user