mShowErrorToast function

void mShowErrorToast(
  1. String message
)

Implementation

void mShowErrorToast(String message) {
  mLogger.d('showErrorToast::$message');
  mShowToastMessage(message,
      icon: Icons.close, color: MThemeConfig.toastErrorTextColor);
}