TDPopupBottomDisplayPanel constructor

const TDPopupBottomDisplayPanel({
  1. required Widget child,
  2. String? title,
  3. Color? titleColor,
  4. bool titleLeft = false,
  5. bool hideClose = false,
  6. Color? closeColor,
  7. PopupClick? closeClick,
  8. Color? backgroundColor,
  9. Key? key,
})

Implementation

const TDPopupBottomDisplayPanel(
    {required this.child,
      this.title,
      this.titleColor,
      this.titleLeft = false,
      this.hideClose = false,
      this.closeColor,
      this.closeClick,
      this.backgroundColor,
      Key? key})
    : super(key: key);