setupDashboard static method

Future<FeedFrontModel> setupDashboard(
  1. AppModel app,
  2. FeedModel feed,
  3. String uniqueId,
  4. String componentIdentifier,
)

Implementation

static Future<FeedFrontModel> setupDashboard(AppModel app, FeedModel feed,
    String uniqueId, String componentIdentifier) async {
  return await feedFrontRepository(appId: app.documentID)!
      .add(_dashboardModel(app, feed, uniqueId, componentIdentifier));
}