save abstract method

Future save(
  1. String? correlation_id,
  2. List<T> items
)

Saves given data items.

  • correlation_id (optional) transaction id to trace execution through call chain.
  • item a list of items to save. Return (optional) Future that receives null for success. Throw error

Implementation

Future save(String? correlation_id, List<T> items);