deleteMyCredentials method

Future<Map<String, dynamic>> deleteMyCredentials(
  1. String strategy
)

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>;
}