import 'package:json_annotation/json_annotation.dart'; part 'Supply.g.dart'; @JsonSerializable() class Supply { Supply(); num id; String name; String sku; String manufacturer; String unit; num tbSuppliesTypeId; num tbCustomerId; bool isSelected = false; factory Supply.fromJson(Map json) => _$SupplyFromJson(json); Map toJson() => _$SupplyToJson(this); }