$RechargeListEntityFromJson function

RechargeListEntity $RechargeListEntityFromJson(
  1. Map<String, dynamic> json
)

Implementation

RechargeListEntity $RechargeListEntityFromJson(Map<String, dynamic> json) {
	final RechargeListEntity rechargeListEntity = RechargeListEntity();
	final List<RechargeList>? list = jsonConvert.convertListNotNull<RechargeList>(json['list']);
	if (list != null) {
		rechargeListEntity.list = list;
	}
	return rechargeListEntity;
}