$LevelSysExtListExpReceiveFromJson function

LevelSysExtListExpReceive $LevelSysExtListExpReceiveFromJson(
  1. Map<String, dynamic> json
)

Implementation

LevelSysExtListExpReceive $LevelSysExtListExpReceiveFromJson(Map<String, dynamic> json) {
	final LevelSysExtListExpReceive levelSysExtListExpReceive = LevelSysExtListExpReceive();
	final int? maxNum = jsonConvert.convert<int>(json['maxNum']);
	if (maxNum != null) {
		levelSysExtListExpReceive.maxNum = maxNum;
	}
	final String? name = jsonConvert.convert<String>(json['name']);
	if (name != null) {
		levelSysExtListExpReceive.name = name;
	}
	final int? num = jsonConvert.convert<int>(json['num']);
	if (num != null) {
		levelSysExtListExpReceive.num = num;
	}
	final String? pro = jsonConvert.convert<String>(json['pro']);
	if (pro != null) {
		levelSysExtListExpReceive.pro = pro;
	}
	final String? type = jsonConvert.convert<String>(json['type']);
	if (type != null) {
		levelSysExtListExpReceive.type = type;
	}
	return levelSysExtListExpReceive;
}