setPassword static method

void setPassword(
  1. String password
)

Implementation

static void setPassword(String password) async {
  SharedPreferences pref = await SharedPreferences.getInstance();
  await pref.setString(Key_password, password);
}