class Descuento { int? id; int porcentaje; Descuento({this.id, required this.porcentaje}); factory Descuento.fromJson(Map json) { return Descuento( id: json['id'], porcentaje: json['porcentaje'], ); } Map toJson() { return { 'id': id, 'porcentaje': porcentaje, }; } }