setupDashboard static method
Implementation
static Future<ProfileModel> setupDashboard(
AppModel app,
String uniqueId,
String componentIdentifier,
FeedModel feed,
) async {
return await AbstractRepositorySingleton.singleton
.profileRepository(app.documentID)!
.add(profileModel(
app,
uniqueId,
componentIdentifier,
feed,
));
}