TDPopupBottomConfirmPanel constructor

const TDPopupBottomConfirmPanel({
  1. required Widget child,
  2. String? title,
  3. Color? titleColor,
  4. String? leftText,
  5. Color? leftTextColor,
  6. PopupClick? leftClick,
  7. String? rightText,
  8. Color? rightTextColor,
  9. PopupClick? rightClick,
  10. Color? backgroundColor,
  11. Key? key,
})

Implementation

const TDPopupBottomConfirmPanel(
    {required this.child,
    this.title,
    this.titleColor,
    this.leftText,
    this.leftTextColor,
    this.leftClick,
    this.rightText,
    this.rightTextColor,
    this.rightClick,
      this.backgroundColor,
    Key? key})
    : super(key: key);