models/products library
Classes
- MetaData
- WooProduct
- WooProductDefaultAttribute
- WooProductDimension
-
class Category {
final int id;
final String name;
final String slug;
Category(this.id, this.name, this.slug);
Category.fromJson(Map<String, dynamic> json)
: id = json
'id'
, name = json'name'
, slug = json'slug'
; Map<String, dynamic> toJson() => { 'id': id, 'name': name, 'slug': slug, }; @override toString() => toJson().toString(); } - WooProductDownload
- WooProductImage
- WooProductItemAttribute
- WooProductItemTag