I've successfully stored some data in Ionic 2's Storage feature.
import { Storage } from '@ionic/storage';
... ... ...
constructer(public storage: Storage){}
this.storage.set('usertype', usertype);
Next, I need to set up a function to retrieve data from storage. The program logic should then proceed to execute the following functions after retrieving the data. How can I go about creating this Get function or structuring the program logic?