buildNotificationTab method
Widget
buildNotificationTab(
- FynoInApp fynoInApp,
- List messages,
- dynamic onClick(),
- String tabName,
- 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,
),
);
}