setupDashboard static method

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

Implementation

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