import 'package:json_annotation/json_annotation.dart'; part 'queue_bean.g.dart'; /// @JsonSerializable(explicitToJson: true) class QueueBean { int? play_queue_id; int? queue_pos; int? level; QueueBean(this.play_queue_id, this.queue_pos, this.level); factory QueueBean.fromJson(Map json) => _$QueueBeanFromJson(json); Map toJson() => _$QueueBeanToJson(this); }