WooProductCategoryImage.fromJson constructor

WooProductCategoryImage.fromJson(
  1. Map<String, dynamic> json
)

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'];
}