ConfirmDialogCustom constructor

const ConfirmDialogCustom(
  1. String alertMsg, {
  2. String hintText = '',
  3. String message = '',
  4. String initContent = '',
  5. String? title,
  6. String? lblOK,
  7. EdgeInsets? padding,
  8. Alignment alignMessage = Alignment.centerLeft,
  9. TextAlign alignMessageText = TextAlign.left,
  10. Color colorMessage = const Color(0xFF1F1F1F),
  11. TextInputType inputType = TextInputType.text,
  12. TextInputAction action = TextInputAction.done,
  13. int? maxLength,
  14. int? line,
  15. bool hasSubOK = false,
  16. bool showMsg = true,
  17. List<TextInputFormatter>? inputFormatters,
  18. Widget? suffix,
  19. bool isCheckEmpty = true,
  20. Key? key,
})

Implementation

const ConfirmDialogCustom(this.alertMsg,
    {this.hintText = '',
    this.message = '',
    this.initContent = '',
    this.title,
    this.lblOK, this.padding,
    this.alignMessage = Alignment.centerLeft,
    this.alignMessageText = TextAlign.left,
    this.colorMessage = const Color(0xFF1F1F1F),
    this.inputType = TextInputType.text,
    this.action = TextInputAction.done,
    this.maxLength, this.line,
    this.hasSubOK = false, this.showMsg = true,
    this.inputFormatters, this.suffix,
    this.isCheckEmpty = true, Key? key}):super(key:key);