(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 | } |
| 110 | |
| 111 | // proxy |
| 112 | notify(...args) { |
no test coverage detected