ExceptionWidget constructor

const ExceptionWidget({
  1. Key? key,
  2. String? assetImage,
  3. Icon? icon,
  4. required EdgeInsets margin,
  5. required double height,
  6. required String? title,
  7. required TextStyle? titleStyle,
  8. required String? subtitle,
  9. required TextStyle? subtitleStyle,
  10. Color? cardColor,
  11. bool large = false,
})

Implementation

const ExceptionWidget({
  Key? key,
  this.assetImage,
  this.icon,
  required this.margin,
  required this.height,
  required this.title,
  required this.titleStyle,
  required this.subtitle,
  required this.subtitleStyle,
  this.cardColor,
  this.large: false
}) : super(key: key);