buildNotificationTab method

Widget buildNotificationTab(
  1. FynoInApp fynoInApp,
  2. List messages,
  3. dynamic onClick(),
  4. String tabName,
  5. ScrollController? scrollController,
)

Implementation

Widget buildNotificationTab(
  FynoInApp fynoInApp,
  List<dynamic> messages,
  Function() onClick,
  String tabName,
  ScrollController? scrollController,
) {
  return Tab(
    child: NotificationsTab(
      fynoInApp,
      messages,
      onClick,
      tabName,
      scrollController,
      themeConfig: widget.themeConfig,
    ),
  );
}