import 'dart:convert'; import 'package:http/http.dart' as http; import 'package:leg_barkr_app/utils/endpoints.dart' as Endpoints; class StepsService { Future getStepsToday(deviceId) async { final response = await http.get( Uri.parse(Endpoints.getStepsToday), headers: { 'Content-Type': 'application/json; charset=UTF-8', 'deviceid': deviceId, }, ); return jsonDecode(response.body)['cumulative_steps_today']; } Future> getStepsLastFiveDays(deviceId) async { final response = await http.get( Uri.parse(Endpoints.getStepsLastFiveDays), headers: { 'Content-Type': 'application/json; charset=UTF-8', 'deviceid': deviceId, }, ); List list = jsonDecode(response.body)['daily_steps']; List steps = []; for (final l in list){ steps.add(l); } return steps; } }