toMap method
Implementation
Map<String, dynamic> toMap() => {
'qty': quantity,
'title': title,
'price': price,
'id': id,
'url': url,
if (tags != null) 'tags': tags,
if (vars != null) 'vars': vars,
if (_images != null) 'images': _images,
};