mirror of
https://github.com/nisrulz/flutter-examples.git
synced 2025-07-06 02:43:06 +08:00
19 lines
287 B
Dart
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,
|
|
});
|
|
}
|