Quote.forClient constructor
Create an invoice for a client
Implementation
factory Quote.forClient(Client client, {required List<Product> products}) {
return Quote(
clientId: client.id,
lineItems: (products).map((product) => product.toLineItem).toList(),
);
}