FxNotificationPageView constructor

FxNotificationPageView({
  1. Key? key,
  2. String title = 'Notifications',
  3. FxStateData errorState = FxStates.error,
  4. FxStateData emptyState = _defaultEmptyStateData,
  5. void onTap(
    1. FxNotification
    )?,
})

Implementation

FxNotificationPageView({
  super.key,
  this.title = 'Notifications',
  this.errorState = FxStates.error,
  this.emptyState = _defaultEmptyStateData,
  this.onTap,
});