OmegaModernErrorDialogWidget constructor

const OmegaModernErrorDialogWidget({
  1. Key? key,
  2. String title = "Oops! Ocorreu um erro",
  3. required String description,
  4. String? longMessage,
  5. Color? textColor,
  6. Color? bgColor,
  7. dynamic onReportError(
    1. String
    )?,
})

Implementation

const OmegaModernErrorDialogWidget({
  Key? key,
  this.title = "Oops! Ocorreu um erro",
  required this.description,
  this.longMessage,
  this.textColor,
  this.bgColor,
  this.onReportError,
}) : super(key: key);