UpdateProfile method
Implementation
Future<UpdateProfileModel> UpdateProfile(BuildContext context, String jsonBody) async {
var response = await sdkapiservice.postData(context, jsonBody, AppUrl.UPDATE_PROFILE,false);
return UpdateProfileModel.fromJson(response);
}