DialogPage<T> constructor

const DialogPage<T>({
  1. required dynamic builder,
  2. dynamic anchorPoint,
  3. dynamic barrierColor = Colors.black87,
  4. bool barrierDismissible = true,
  5. String? barrierLabel,
  6. String? label,
  7. bool useSafeArea = true,
  8. dynamic themes,
  9. dynamic key,
  10. dynamic name,
  11. dynamic arguments,
  12. dynamic restorationId,
})

Implementation

const DialogPage({
  required this.builder,
  this.anchorPoint,
  this.barrierColor = Colors.black87,
  this.barrierDismissible = true,
  this.barrierLabel,
  this.label,
  this.useSafeArea = true,
  this.themes,
  super.key,
  super.name,
  super.arguments,
  super.restorationId,
});