CustomErrorWidget constructor
const
CustomErrorWidget({
- Key? key,
- required FlutterErrorDetails errorDetails,
- required bool showErrorDetails,
- required String logoAsset,
- required dynamic onRestart(),
Implementation
const CustomErrorWidget({
Key? key,
required this.errorDetails,
required this.showErrorDetails,
required this.logoAsset,
required this.onRestart,
}) : super(key: key);