SubZeroDialogContentArea constructor

const SubZeroDialogContentArea({
  1. Key? key,
  2. Widget? child,
  3. double height = 100,
  4. Color? backgroundColor,
  5. BorderRadius? borderRadius,
})

Implementation

const SubZeroDialogContentArea({
  super.key,
  this.child,
  this.height = 100,
  this.backgroundColor,
  this.borderRadius,
});