getUserPassword static method

Future<String> getUserPassword()

Implementation

static Future<String> getUserPassword() async {
  SharedPreferences pref = await SharedPreferences.getInstance();
  return pref.getString("rilac_userPassword") ?? globalUserPassword;
}