ProductAttributeTermsModel.fromJson constructor
Implementation
factory ProductAttributeTermsModel.fromJson(Map<String, dynamic> json) {
return ProductAttributeTermsModel(
id: json['id'],
name: json['name'],
slug: json['slug'],
description: json['description'],
menu_order: json['menu_order'],
count: json['count']);
}