updateMyCredentials method
Update credentials
of the specified strategy
for the current user.
Implementation
Future<Map<String, dynamic>> updateMyCredentials(
String strategy, Map<String, dynamic> credentials) async {
final response = await kuzzle.query(KuzzleRequest(
controller: name,
action: 'updateMyCredentials',
strategy: strategy,
body: credentials,
));
return response.result as Map<String, dynamic>;
}