resetDatabasePassword method
Resets the password for a user in the database. Returns the new password for the user.
Implementation
_i2.Future<String> resetDatabasePassword({
required String cloudCapsuleId,
required String username,
}) => caller.callServerEndpoint<String>('database', 'resetDatabasePassword', {
'cloudCapsuleId': cloudCapsuleId,
'username': username,
});