run method

Future<PageModel> run({
  1. required String componentIdentifier,
})

Implementation

Future<PageModel> run({
  required String componentIdentifier,
}) async {
  await setupDashboard(feedMenuPageId, app, uniqueId, componentIdentifier);
  return await doIt(
      componentName: AbstractFollowRequestsDashboardComponent.componentName,
      componentIdentifier: componentIdentifier,
      title: "Follower requests",
      description: "Follower requests");
}