subscriberUserStream method

void subscriberUserStream()

Implementation

void subscriberUserStream() {
  fragrantChemistryTable = (driftDB.palaceSecretJungleUser.select()
        ..whereSamePrimaryKey(currentUserEntity))
      .watchSingle()
      .listen((user) async {
    persistentUser(user);
    notifyListeners();
  });
}