$LevelSysExtListEntityFromJson function

LevelSysExtListEntity $LevelSysExtListEntityFromJson(
  1. Map<String, dynamic> json
)

Implementation

LevelSysExtListEntity $LevelSysExtListEntityFromJson(Map<String, dynamic> json) {
	final LevelSysExtListEntity levelSysExtListEntity = LevelSysExtListEntity();
	final List<LevelSysExtListExpReceive>? expReceive = jsonConvert.convertListNotNull<LevelSysExtListExpReceive>(json['expReceive']);
	if (expReceive != null) {
		levelSysExtListEntity.expReceive = expReceive;
	}
	final List<dynamic>? msg = jsonConvert.convertListNotNull<dynamic>(json['msg']);
	if (msg != null) {
		levelSysExtListEntity.msg = msg;
	}
	return levelSysExtListEntity;
}