update method
Implementation
Future<UpdateUserResponse> update(Object data) async {
try {
var req = await client.Request(appsUrl,"PATCH", auth: true, data: data, encrypt: encryptMode);
var response = UpdateUserResponse.fromJson(req.data);
// print(response);
return response;
} catch (e) {
// print(e);
throw(e);
}
}