AlertController constructor

AlertController({
  1. void onShowInfo({
    1. String message,
    2. String? title,
    })?,
  2. void onShowError({
    1. String message,
    2. String? title,
    })?,
  3. void showWarning({
    1. String message,
    2. String? title,
    })?,
})

Implementation

AlertController({
  this.onShowInfo,
  this.onShowError,
  this.showWarning,
});