showMissedCallNotifications property

set showMissedCallNotifications (bool value)

Wheter or not should the user receive a notification after a missed call, default to true.

Setting is persisted across restarts until overriden

Implementation

set showMissedCallNotifications(bool value) {
  _channel
      .invokeMethod('show-notifications', <String, dynamic>{"show": value});
}