NotificationListNotificationsInput constructor

  1. @JsonSerializable(includeIfNull: false)
const NotificationListNotificationsInput({
  1. List<String>? reasons,
  2. @Default(50) int limit,
  3. bool? priority,
  4. String? cursor,
  5. DateTime? seenAt,
  6. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory NotificationListNotificationsInput({
  /// A reason that matches the reason property of #notification.
  List<String>? reasons,
  @Default(50) int limit,
  bool? priority,
  String? cursor,
  DateTime? seenAt,

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