load method
Opens the underlying store. Returning false means nothing can be read or written, and the controller keeps its defaults.
Implementation
@override
Future<bool> load() async {
_preferences = await SharedPreferences.getInstance();
return true;
}