isValueNull method

Future<bool> isValueNull(
  1. SharedPreferencesAsync prefs
)

Checks if the stored value is null.

Implementation

Future<bool> isValueNull(SharedPreferencesAsync prefs) async {
  return await getValue(prefs) == null;
}