updateProfile method
Updates a security profile definition.
Implementation
Future<KuzzleProfile> updateProfile(String id, List<dynamic> policies,
{bool? waitForRefresh}) async {
final response = await kuzzle.query(KuzzleRequest(
controller: name,
action: 'updateProfile',
uid: id,
waitForRefresh: waitForRefresh,
body: <String, dynamic>{
'policies': policies,
},
));
return KuzzleProfile.fromKuzzleResponse(kuzzle, response);
}