CreateQueueResponse.fromJson constructor

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

Implementation

factory CreateQueueResponse.fromJson(Map<String, dynamic> json) {
  return CreateQueueResponse(
    queue: json['queue'] != null
        ? Queue.fromJson(json['queue'] as Map<String, dynamic>)
        : null,
  );
}