setupDashboard static method

Future<FollowingDashboardModel> setupDashboard(
  1. String feedMenuPageId,
  2. AppModel app,
  3. String uniqueId,
  4. String componentIdentifier,
)

Implementation

static Future<FollowingDashboardModel> setupDashboard(String feedMenuPageId,
    AppModel app, String uniqueId, String componentIdentifier) async {
  return await followingDashboardRepository(appId: app.documentID)!.add(
      _dashboardModel(feedMenuPageId, app, uniqueId, componentIdentifier));
}