CorextraCustomException constructor
Implementation
const CorextraCustomException({
String? code,
String? message,
super.details, // <- super parameter
}) : super(
code: code ?? 'CUSTOM_ERROR',
message: message ?? 'Something went wrong!',
);