saveDocument abstract method

Future<void> saveDocument(
  1. ModelAdapterDocumentQuery query,
  2. DynamicMap value
)

By passing the query and the value to be stored, the data is stored on the platform set by the adapter.

Keys with value value of null should be deleted from the database.

queryと保存するvalueを渡すことでアダプターで設定されたプラットフォームにデータを保存します。

valueの値にNullが入っているキーはデータベース上から削除するようにしてください。

Implementation

Future<void> saveDocument(
  ModelAdapterDocumentQuery query,
  DynamicMap value,
);