persist method

Future<void> persist(
  1. List<Document> docs
)

Implementation

Future<void> persist(List<Document<dynamic>> docs) async {
  await _sendMessage(
    PersistMessageRequest(payload: PersistPayload(docs)),
  );
}