14 lines
247 B
Dart
14 lines
247 B
Dart
import 'yourLocation.dart';
|
|
import 'dart:async';
|
|
import 'package:jaguar_resty/jaguar_resty.dart' as resty;
|
|
|
|
class FiresApi {
|
|
|
|
Future<String> createUser(String token) async {
|
|
|
|
}
|
|
|
|
Future<List<YourLocation>> fetchYourLocations() async {
|
|
|
|
}
|
|
}
|