run method
Implementation
Future<ShopModel> run() async {
var image = await uploadImage();
var presentationDocumentId = (await _setupPresentation(image)).documentID;
await _setupShopFronts();
var appBar = installApp!.appBar();
var shop = await _setupShop();
await Products(
shop: shop,
uniqueId: newRandomKey(),
app: installApp!.theApp,
memberId: installApp!.member!.documentID)
.run();
await _setupFader();
await _setupPage(appBar, presentationDocumentId);
return shop;
}