showErrorToast function
void
showErrorToast(
- String status, {
- Duration? duration,
- BaseEasyLoadingMaskType? maskType,
- bool? dismissOnTap,
Implementation
void showErrorToast(
String status, {
Duration? duration,
BaseEasyLoadingMaskType? maskType,
bool? dismissOnTap,
}) {
BaseEasyLoading.showError(
status,
duration: duration,
maskType: maskType,
dismissOnTap: dismissOnTap,
);
}