(msg, autoHideDuration = AUTO_HIDE_DURATION)
| 102 | this.snackbar.callNotify(msg, MESSAGE_TYPE.WARNING, autoHideDuration, {plainText: true}); |
| 103 | } |
| 104 | infoText(msg, autoHideDuration = AUTO_HIDE_DURATION) { |
| 105 | this.snackbar.callNotify(msg, MESSAGE_TYPE.INFO, autoHideDuration, {plainText: true}); |
| 106 | } |
| 107 | errorText(msg, autoHideDuration = AUTO_HIDE_DURATION) { |
| 108 | this.snackbar.callNotify(msg, MESSAGE_TYPE.ERROR, autoHideDuration, {plainText: true}); |
| 109 | } |
no test coverage detected