WooProductCategoryImage.fromJson constructor
Implementation
WooProductCategoryImage.fromJson(Map<String, dynamic> json) {
id = json['id'];
dateCreated = json['date_created'];
dateCreatedGmt = json['date_created_gmt'];
dateModified = json['date_modified'];
dateModifiedGmt = json['date_modified_gmt'];
src = (json['src'] != null && json['src'] is String) ? json['src'] : "";
name = json['name'];
alt = json['alt'];
}