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