fromJson static method
Implementation
static Impression fromJson(Map<String, dynamic> json) {
return Impression(
impressionListName: json['impressionListName'] as String,
products: json['products'] as List<Product>);
}
static Impression fromJson(Map<String, dynamic> json) {
return Impression(
impressionListName: json['impressionListName'] as String,
products: json['products'] as List<Product>);
}