(
message,
title = "",
detail = "",
display_time = 3,
group = "",
priority = defaultPriority
)
| 536 | }, |
| 537 | |
| 538 | async error( |
| 539 | message, |
| 540 | title = "", |
| 541 | detail = "", |
| 542 | display_time = 3, |
| 543 | group = "", |
| 544 | priority = defaultPriority |
| 545 | ) { |
| 546 | return await this.createNotification( |
| 547 | NotificationType.ERROR, |
| 548 | message, |
| 549 | title, |
| 550 | detail, |
| 551 | display_time, |
| 552 | group, |
| 553 | priority |
| 554 | ); |
| 555 | }, |
| 556 | |
| 557 | async progress( |
| 558 | message, |
nothing calls this directly
no outgoing calls
no test coverage detected