static String hashPassword(String password, {String salt = ""}) { return sha256.convert((password + passwordSalt + salt).codeUnits).toString(); }