AppNotificationPage constructor

const AppNotificationPage({
  1. Key? key,
  2. Widget? title,
  3. bool? centerTitle,
  4. PreferredSizeWidget? bottom,
  5. List<Widget>? actions,
  6. Color? searchFilterColor,
  7. EdgeInsets bottomPadding = const EdgeInsets.symmetric(vertical: _filterSpacing),
  8. required LocalizeNotificationType onLocalizeNotificationType,
})

Implementation

const AppNotificationPage({
  super.key,
  this.title,
  this.centerTitle,
  this.bottom,
  this.actions,
  this.searchFilterColor,
  this.bottomPadding = const EdgeInsets.symmetric(vertical: _filterSpacing),
  required this.onLocalizeNotificationType,
});