mirror of https://github.com/flutter/samples.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
445 B
22 lines
445 B
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',
|
|
);
|