InventoryResultEntity.fromJson constructor
Implementation
factory InventoryResultEntity.fromJson(Map<String, dynamic> json) {
return InventoryResultEntity(
data: (json['Data'] as Map<String, dynamic>?)?.map((k, e) =>
MapEntry(k, InventoryResultItem.fromJson(e as Map<String, dynamic>))),
id: json['Id'] as String?,
);
}