QueueListQueuesOutput constructor

  1. @JsonSerializable.new(includeIfNull: false)
const QueueListQueuesOutput({
  1. String? cursor,
  2. @QueueViewConverter() required List<QueueView> queues,
  3. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory QueueListQueuesOutput({
  String? cursor,
  @QueueViewConverter() required List<QueueView> queues,

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