40 lines
1.3 KiB
Dart
40 lines
1.3 KiB
Dart
import 'dart:convert';
|
|
|
|
import 'package:unit2/model/location/barangay.dart';
|
|
import 'package:unit2/model/passo/city.dart';
|
|
import 'package:unit2/model/passo/class_components.dart';
|
|
import 'package:http/http.dart' as http;
|
|
import 'package:unit2/utils/request.dart';
|
|
import 'package:unit2/utils/urls.dart';
|
|
|
|
class MunicipalityServices {
|
|
static final MunicipalityServices _instance = MunicipalityServices();
|
|
static MunicipalityServices get instance => _instance;
|
|
|
|
String xClientKey = "unitK3CQaXiWlPReDsBzmmwBZPd9Re1z";
|
|
String xClientKeySecret = "unitcYqAN7GGalyz";
|
|
|
|
Future<List<City>> fetch() async {
|
|
String path = Url.instance.getMunicipality();
|
|
Map<String, String> headers = {
|
|
'Content-Type': 'application/json; charset=UTF-8',
|
|
'X-Client-Key': xClientKey,
|
|
'X-Client-Secret': xClientKeySecret
|
|
};
|
|
try {
|
|
http.Response response = await Request.instance
|
|
.getRequest(param: {}, path: path, headers: headers);
|
|
if (response.statusCode == 200) {
|
|
print(response.body);
|
|
final List result = jsonDecode(response.body)['data'];
|
|
|
|
return result.map(((e) => City.fromJson(e))).toList();
|
|
} else {
|
|
throw Exception(response.reasonPhrase);
|
|
}
|
|
} catch (e) {
|
|
throw e.toString();
|
|
}
|
|
}
|
|
}
|