mirror of
https://github.com/flutter/samples.git
synced 2025-11-11 23:39:14 +00:00
Compass app (#2446)
This commit is contained in:
33
compass_app/app/testing/models/booking.dart
Normal file
33
compass_app/app/testing/models/booking.dart
Normal file
@@ -0,0 +1,33 @@
|
||||
// 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/data/services/api/model/booking/booking_api_model.dart';
|
||||
import 'package:compass_app/domain/models/booking/booking.dart';
|
||||
import 'package:compass_app/domain/models/booking/booking_summary.dart';
|
||||
|
||||
import 'activity.dart';
|
||||
import 'destination.dart';
|
||||
|
||||
final kBooking = Booking(
|
||||
startDate: DateTime(2024, 01, 01),
|
||||
endDate: DateTime(2024, 02, 12),
|
||||
destination: kDestination1,
|
||||
activity: [kActivity],
|
||||
);
|
||||
|
||||
final kBookingSummary = BookingSummary(
|
||||
id: 0,
|
||||
startDate: kBooking.startDate,
|
||||
endDate: kBooking.endDate,
|
||||
name: '${kDestination1.name}, ${kDestination1.continent}',
|
||||
);
|
||||
|
||||
final kBookingApiModel = BookingApiModel(
|
||||
id: 0,
|
||||
startDate: kBooking.startDate,
|
||||
endDate: kBooking.endDate,
|
||||
name: '${kDestination1.name}, ${kDestination1.continent}',
|
||||
destinationRef: kDestination1.ref,
|
||||
activitiesRef: [kActivity.ref],
|
||||
);
|
||||
Reference in New Issue
Block a user