BasicErrorView constructor

const BasicErrorView({
  1. required String title,
  2. Key? key,
  3. String? description,
  4. String? button,
  5. VoidCallback? onPressed,
})

Implementation

const BasicErrorView({
  required this.title,
  super.key,
  this.description,
  this.button,
  this.onPressed,
});