NotificationListNotificationsOutput constructor

  1. @JsonSerializable(includeIfNull: false)
const NotificationListNotificationsOutput({
  1. String? cursor,
  2. @NotificationConverter() required List<Notification> notifications,
  3. bool? priority,
  4. DateTime? seenAt,
  5. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory NotificationListNotificationsOutput({
  String? cursor,
  @NotificationConverter() required List<Notification> notifications,
  bool? priority,
  DateTime? seenAt,

  Map<String, dynamic>? $unknown,
}) = _NotificationListNotificationsOutput;