ErrorPopup constructor

const ErrorPopup(
  1. String content, {
  2. String confirmText = 'OK',
  3. dynamic onOk()?,
  4. String title = 'Notification',
})

Implementation

const ErrorPopup(
    this.content, {
      this.confirmText = 'OK',
      this.onOk,
      this.title = 'Notification',
    });