1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2025-11-08 20:50:04 +00:00
Files
flutter-examples/unit_testing/lib/model/location.dart
2020-07-05 20:42:20 +02:00

19 lines
287 B
Dart

import 'lat_long.dart';
class Location {
final int id;
final String name;
final String image;
final LatLong latlong;
final String country;
final String info;
Location({
this.id,
this.name,
this.image,
this.latlong,
this.country,
this.info,
});
}