QuoteCreateOptionsFromQuote constructor

const QuoteCreateOptionsFromQuote({
  1. bool? isRevision,
  2. required String quote,
})

from_quote_params

Clone an existing quote. The new quote will be created in `status=draft`. When using this parameter, you cannot specify any other parameters except for `expires_at`.

Implementation

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