Queue.fromJson constructor

Queue.fromJson(
  1. Map<String, dynamic> json
)

Implementation

Queue.fromJson(Map<String, dynamic> json)
    : tenantId = TenantId.fromJson(json['tenantId']),
      name = json['name'],
      topic = json['topic'],
      pollInterval = json['pollInterval'],
      partitions = json['partitions'],
      consumerPerPartition = json['consumerPerPartition'],
      packProcessingTimeout = json['packProcessingTimeout'],
      submitStrategy = SubmitStrategy.fromJson(json['submitStrategy']),
      processingStrategy =
          ProcessingStrategy.fromJson(json['processingStrategy']),
      super.fromJson(json);