ErrorScreen constructor
const
ErrorScreen({
- Key? key,
- required String message,
- required VoidCallback? perform,
- required bool isLightMode,
Implementation
const ErrorScreen({
Key? key,
required this.message,
required this.perform,
required this.isLightMode,
}) : super(key: key);