TUIErrorWidget constructor

TUIErrorWidget({
  1. required String message,
  2. String? details,
  3. bool showIcon = true,
  4. Key? key,
})

Implementation

TUIErrorWidget({
  required this.message,
  this.details,
  this.showIcon = true,
  super.key,
});