QuoteFromQuote constructor

const QuoteFromQuote({
  1. required bool isRevision,
  2. required QuoteOrId quote,
})

Details of the quote that was cloned. See the [cloning documentation](https://stripe.com/docs/quotes/clone) for more details.

Implementation

const QuoteFromQuote({
  required this.isRevision,
  required this.quote,
});