ErrorScreen constructor

const ErrorScreen({
  1. Key? key,
  2. FlutterErrorDetails? errorDetails,
  3. Color? txtColor,
  4. TextStyle? textStyle,
})

Implementation

const ErrorScreen({
  super.key,
  this.errorDetails,
  this.txtColor,
  this.textStyle,
});