ButtonShowContentDialog constructor

const ButtonShowContentDialog({
  1. Key? key,
  2. required BuilderDialog dialog,
  3. required Widget child,
  4. double widthDialog = 200,
  5. double heightDialog = 200,
  6. double borderRadiusDialog = 10,
  7. Color? colorBorderDialog,
})

Implementation

const ButtonShowContentDialog({
  super.key,
  required this.dialog,
  required this.child,
  this.widthDialog = 200,
  this.heightDialog = 200,
  this.borderRadiusDialog = 10,
  this.colorBorderDialog,
});