run method
Implementation
Future<void> run() async {
var appBar = installApp!.appBar();
var android = await androidImage();
var iphone = await iphoneImage();
var tablet = await tabletImage();
var macbook = await macbookImage();
await _setupFader(android, iphone, tablet, macbook);
for (int i = 0; i < theIdentifiers.length; i++) {
await _setupWelcomeDocument(privilegeLevelsRequired[i]);
await _setupPage(appBar, privilegeLevelsRequired[i]);
}
return;
}