getPref method

FutureOr<SharedPreferences> getPref()

Return cached SharedPreferences instance

Implementation

FutureOr<SharedPreferences> getPref() async {
  _pref ??= await SharedPreferences.getInstance();
  return _pref!;
}