DescribeMatchmakingOutput.fromJson constructor
Implementation
factory DescribeMatchmakingOutput.fromJson(Map<String, dynamic> json) {
return DescribeMatchmakingOutput(
ticketList: (json['TicketList'] as List?)
?.whereNotNull()
.map((e) => MatchmakingTicket.fromJson(e as Map<String, dynamic>))
.toList(),
);
}