package com.example.rehabilitation.Pref import android.content.Context import android.content.SharedPreferences class ClearPref() { fun clearToken(context: Context) { val prefDoctor: SharedPreferences = context.getSharedPreferences("PATIENT", Context.MODE_PRIVATE) val edit = prefDoctor.edit() edit?.clear() edit?.apply() } }