Added fire locations
This commit is contained in:
parent
c4438365ab
commit
8e4e469eb8
15 changed files with 607 additions and 49 deletions
9
lib/basicLocation.dart
Normal file
9
lib/basicLocation.dart
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import 'package:flutter/material.dart';
|
||||
|
||||
class BasicLocation {
|
||||
final double lat;
|
||||
final double lon;
|
||||
final String description;
|
||||
|
||||
BasicLocation({@required this.lat, @required this.lon, this.description});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue