(title: string, description?: string)
| 40 | return this.show({ title, description, variant: 'success' }) |
| 41 | }, |
| 42 | error(title: string, description?: string) { |
| 43 | return this.show({ title, description, variant: 'error' }) |
| 44 | }, |
| 45 | warning(title: string, description?: string) { |
| 46 | return this.show({ title, description, variant: 'warning' }) |
| 47 | }, |
nothing calls this directly
no outgoing calls
no test coverage detected