init method
Implementation
Future<void> init() async {
// setup shared Pref
this.sharedPreferences = await SharedPreferences.getInstance();
// parse and store user
_user = await this.getUser();
if (isExpired(_user)) {
_user = null;
}
}