CustomError constructor
const
CustomError({
- required Image errorImage,
- required String errorTitle,
- required String errorMessage,
- String? buttonTitle,
- VoidCallback? retryAction,
Implementation
const CustomError({
required this.errorImage,
required this.errorTitle,
required this.errorMessage,
this.buttonTitle,
this.retryAction,
});