()
| 446 | } |
| 447 | |
| 448 | clearAllNotifs() { |
| 449 | if (Platform.OS === 'ios') { |
| 450 | CommIOSNotifications.removeAllDeliveredNotifications(); |
| 451 | } else if (Platform.OS === 'android') { |
| 452 | CommAndroidNotifications.removeAllDeliveredNotifications(); |
| 453 | } |
| 454 | } |
| 455 | |
| 456 | clearNotifsOfThread() { |
| 457 | const { activeThread } = this.props; |
no test coverage detected