SilAlertDialogData constructor

SilAlertDialogData({
  1. String? title,
  2. String? content,
  3. String? cancelButtonTitle,
  4. String? confrimButtonTitle,
})

Implementation

SilAlertDialogData(
    {String? title,
    String? content,
    String? cancelButtonTitle,
    String? confrimButtonTitle}) {
  this.title = title;
  this.content = content;
  this.cancelButtonTitle = cancelButtonTitle;
  this.confrimButtonTitle = confrimButtonTitle;
}