CrossmintCheckoutLineItem.raw constructor

CrossmintCheckoutLineItem.raw({
  1. required Map<String, Object?> value,
})

Forward-compatible escape hatch — passes value verbatim to the Crossmint orders API as the line item shape. Use when a new line-item field is not yet modeled by the typed factories above.

Implementation

factory CrossmintCheckoutLineItem.raw({required Map<String, Object?> value}) =
    CrossmintCheckoutRawLineItem;