ErrorView constructor

const ErrorView({
  1. Key? key,
  2. required String errorDetails,
})

Implementation

const ErrorView({
  super.key,
  required this.errorDetails,
});