Create Location authored by Andrew Januszko's avatar Andrew Januszko
Location is an api we designed that allows the user to call for their current location at any time. I had safety nets in place to make sure you always get data back, even if the user has denied location access.
You can get location data by calling networkmanager's getLocation function
```dart
final location = await NetworkManager.getLocation();
```
\ No newline at end of file