TDPopupCenterPanel constructor

const TDPopupCenterPanel({
  1. required Widget child,
  2. bool closeUnderBottom = false,
  3. Color? closeColor,
  4. PopupClick? closeClick,
  5. Color? backgroundColor,
  6. Key? key,
})

Implementation

const TDPopupCenterPanel(
    {required this.child,
      this.closeUnderBottom = false,
      this.closeColor,
      this.closeClick,
      this.backgroundColor,
      Key? key})
    : super(key: key);