PageAction constructor

PageAction({
  1. required String title,
  2. IconData? iconData,
  3. VoidCallback? onTap,
  4. bool isMain = false,
  5. bool isSecondary = false,
  6. bool needConfirmation = false,
  7. String? confirmationTitle,
  8. String? confirmationMessage,
  9. Color? color,
})

Implementation

PageAction({
  required this.title,
  this.iconData,
  this.onTap,
  this.isMain = false,
  this.isSecondary = false,
  this.needConfirmation = false,
  this.confirmationTitle,
  this.confirmationMessage,
  this.color,
});