UpdateProfile method

Future<UpdateProfileModel> UpdateProfile(
  1. BuildContext context,
  2. String jsonBody
)

Implementation

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