13 lines
380 B
Dart
13 lines
380 B
Dart
import 'package:gsp_app/api/network_api.dart';
|
|
import 'package:gsp_app/repository/endpoints.dart';
|
|
|
|
import '../api/base_manager.dart';
|
|
|
|
class StepCounts {
|
|
Future<ResponseData<dynamic>> storeSteps(updata) async {
|
|
final response = await NetworkApi().postApi(url: Endpoints.storeSteps, data: updata);
|
|
print("response from step count $response");
|
|
return response;
|
|
}
|
|
}
|