ErrorMessage constructor

const ErrorMessage({
  1. Object? error = 'Ocorreu um erro.',
  2. StackTrace? stackTrace,
  3. IconData icon = FontAwesomeIcons.triangleExclamation,
  4. Key? key,
})

Implementation

const ErrorMessage({
  this.error = 'Ocorreu um erro.',
  this.stackTrace,
  this.icon = FontAwesomeIcons.triangleExclamation,
  super.key,
});