create method
Implementation
Future<PageModel> create() async {
if (aboutAssetLocation != null) {
var image = await installAboutImage();
await _store(image);
return await _setupPage();
} else {
return PageWithTextBuilder(
uniqueId,
title,
description,
text,
pageId,
app,
memberId,
theHomeMenu,
theAppBar,
leftDrawer,
rightDrawer,
).create();
}
}