I know how to check for a single key if exist in shared preferences like this line for example:
bool check = preferences.containsKey('weight');
But what if I want to check for multiple keys at once, something like this:
bool check = preferences.containsKey('weight','height',userName...ect);
Is is possible to somehow check for multiple values at once?