You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
396 B

3 years ago
import 'package:equatable/equatable.dart';
class Queue extends Equatable {
final String? qid;
final String? nickname;
final String? avatar;
Queue({this.qid, this.nickname, this.avatar}) : super();
static Queue fromJson(dynamic json) {
return Queue(
qid: json['qid'], nickname: json['nickname'], avatar: json['avatar']);
}
@override
List<Object> get props => [];
}