mirror of
https://github.com/supleed2/ELEC60013-ES-CW1.git
synced 2024-11-12 18:55:49 +00:00
17 lines
566 B
Dart
17 lines
566 B
Dart
|
import 'dart:convert';
|
||
|
import 'package:http/http.dart' as http;
|
||
|
import 'package:leg_barkr_app/model/metrics_response.dart';
|
||
|
import 'package:leg_barkr_app/utils/endpoints.dart' as Endpoints;
|
||
|
|
||
|
class MetricsService {
|
||
|
Future<MetricsResponse> getMetricsSummary(deviceId) async {
|
||
|
final response = await http.get(
|
||
|
Uri.parse(Endpoints.getMetricsSummary),
|
||
|
headers: <String, String>{
|
||
|
'Content-Type': 'application/json; charset=UTF-8',
|
||
|
'deviceid': deviceId,
|
||
|
},
|
||
|
);
|
||
|
return MetricsResponse.fromJson(jsonDecode(response.body));
|
||
|
}
|
||
|
}
|