$HistoryMatchEntityFromJson function

HistoryMatchEntity $HistoryMatchEntityFromJson(
  1. Map<String, dynamic> json
)

Implementation

HistoryMatchEntity $HistoryMatchEntityFromJson(Map<String, dynamic> json) {
	final HistoryMatchEntity historyMatchEntity = HistoryMatchEntity();
	final List<HistoryMatchList>? matchList = jsonConvert.convertListNotNull<HistoryMatchList>(json['matchList']);
	if (matchList != null) {
		historyMatchEntity.matchList = matchList;
	}
	return historyMatchEntity;
}