QueueSet<T>.fromJson constructor

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

Implementation

factory QueueSet.fromJson(Map<String, dynamic> json) =>
    QueueSet(size: json['size'], queue: json['queue'] as ListQueue<T>?);