setInChat static method

void setInChat(
  1. bool inChat
)

Implementation

static void setInChat(bool inChat) async {
  SharedPreferences pref = await SharedPreferences.getInstance();
  await pref.setBool(Key_inChat, inChat);
}