putBoolean method

SharedPreferenceEditor putBoolean(
  1. String key,
  2. bool value
)

Implementation

SharedPreferenceEditor putBoolean(String key, bool value) {
  pref[key] = value;
  return this;
}