I have already saved some data to Storage in Ionic 2.
import { Storage } from '@ionic/storage';
... ... ...
constructer(public storage: Storage){}
this.storage.set('usertype', usertype);
Now I have to create to get data from storage. And the program logic must be to execute next functions after get data using created function in storage. How can I create Get function or build program logic?