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