cachListToCahce static method

void cachListToCahce()

Implementation

static void cachListToCahce() async {
  if(_localList != null) {
    SharedPreferences prefs = await SharedPreferences.getInstance();
    prefs.setStringList(_localIdentifier, _localList!);
  }
}