items property

List<NotificationItem>? get items

Items for multi-item notifications. Users on Mac OS X only see the first item.

Implementation

List<NotificationItem>? get items => _wrapped.items?.toDart
    .cast<$js.NotificationItem>()
    .map((e) => NotificationItem.fromJS(e))
    .toList();
set items (List<NotificationItem>? v)

Implementation

set items(List<NotificationItem>? v) {
  _wrapped.items = v?.toJSArray((e) => e.toJS);
}