$LiveListsInfoRowsPlaceListToJson function

Map<String, dynamic> $LiveListsInfoRowsPlaceListToJson(
  1. LiveListsInfoRowsPlaceList entity
)

Implementation

Map<String, dynamic> $LiveListsInfoRowsPlaceListToJson(LiveListsInfoRowsPlaceList entity) {
	final Map<String, dynamic> data = <String, dynamic>{};
	data['chat'] = entity.chat;
	data['country'] = entity.country;
	data['follow'] = entity.follow;
	data['headImage'] = entity.headImage;
	data['isHost'] = entity.isHost;
	data['liveId'] = entity.liveId;
	data['nickname'] = entity.nickname;
	data['role'] = entity.role;
	data['roomId'] = entity.roomId;
	data['roomPlaceId'] = entity.roomPlaceId;
	data['roomUserId'] = entity.roomUserId;
	data['roomUserStatus'] = entity.roomUserStatus;
	data['status'] = entity.status;
	data['streamSeq'] = entity.streamSeq;
	data['telSeq'] = entity.telSeq;
	data['title'] = entity.title;
	data['type'] = entity.type;
	data['userId'] = entity.userId;
	data['visitNum'] = entity.visitNum;
	data['voice'] = entity.voice;
	return data;
}