TenDiaLogScreen constructor

const TenDiaLogScreen({
  1. required bool canClose,
  2. String? title,
  3. Widget? titleBuild,
  4. String? content,
  5. Widget? contentBuild,
  6. String? cancelText,
  7. String? confirmText,
  8. Color? confirmTextColor,
  9. Key? key,
})

Implementation

const TenDiaLogScreen(
    {required this.canClose,
    this.title,
    this.titleBuild,
    this.content,
    this.contentBuild,
    this.cancelText,
    this.confirmText,
    this.confirmTextColor,
    super.key});