toJson method
Implementation
Map<String, dynamic> toJson(ProductAttriduteModel data) {
return {
'id': data.id,
'name': data.name,
'slug': data.slug,
'type': data.type,
'order_by': data.order_by,
'has_archives': data.has_archives,
};
}