ProductPhotoHolder.fromJson constructor
Implementation
ProductPhotoHolder.fromJson(Map<String, dynamic> json) {
photoId = json['photoId'];
sortIndex = json['sortIndex'];
photo = json['photo'] != null ? PhotoDTO.fromJson(json['photo']) : null;
}