$LiveEntityFromJson function

LiveEntity $LiveEntityFromJson(
  1. Map<String, dynamic> json
)

Implementation

LiveEntity $LiveEntityFromJson(Map<String, dynamic> json) {
	final LiveEntity liveEntity = LiveEntity();
	final String? nextTime = jsonConvert.convert<String>(json['nextTime']);
	if (nextTime != null) {
		liveEntity.nextTime = nextTime;
	}
	final String? nextHouseId = jsonConvert.convert<String>(json['nextHouseId']);
	if (nextHouseId != null) {
		liveEntity.nextHouseId = nextHouseId;
	}
	final String? nowPeople = jsonConvert.convert<String>(json['nowPeople']);
	if (nowPeople != null) {
		liveEntity.nowPeople = nowPeople;
	}
	final List<String>? headers = jsonConvert.convertListNotNull<String>(json['headers']);
	if (headers != null) {
		liveEntity.headers = headers;
	}
	return liveEntity;
}