NZPopUp constructor

const NZPopUp({
  1. Key? key,
  2. String? title,
  3. String? content,
  4. Widget? contentWidget,
  5. required List<NZPopUpAction> actions,
  6. Axis actionsAxis = Axis.horizontal,
  7. bool barrierDismissible = true,
})

Implementation

const NZPopUp({
  super.key,
  this.title,
  this.content,
  this.contentWidget,
  required this.actions,
  this.actionsAxis = Axis.horizontal,
  this.barrierDismissible = true,
});