requireInteraction property

bool? get requireInteraction

Indicates that the notification should remain visible on screen until the user activates or dismisses the notification. This defaults to false.

Implementation

bool? get requireInteraction => _wrapped.requireInteraction;
set requireInteraction (bool? v)

Implementation

set requireInteraction(bool? v) {
  _wrapped.requireInteraction = v;
}