chain static method
ChartExportDeliveryAdapter
chain(
- Iterable<
ChartExportDeliveryAdapter> adapters, { - ChartExportDeliveryIntent intent = ChartExportDeliveryIntent.custom,
- bool stopOnFirstFailure = true,
Implementation
static ChartExportDeliveryAdapter chain(
Iterable<ChartExportDeliveryAdapter> adapters, {
ChartExportDeliveryIntent intent = ChartExportDeliveryIntent.custom,
bool stopOnFirstFailure = true,
}) {
return ChartExportCompositeDeliveryAdapter(
adapters,
intent: intent,
stopOnFirstFailure: stopOnFirstFailure,
);
}