setupDashboard static method

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

Implementation

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