ModulaErrorState.notFound constructor
Implementation
factory ModulaErrorState.notFound({
String? title,
String? description,
Widget? action,
}) {
return ModulaErrorState(
type: ModulaErrorStateType.notFound,
title: title ?? 'Not Found',
description: description ??
'The page or resource you are looking for does not exist.',
action: action,
);
}