delete method

Future<void> delete()

Data can be deleted.

It is the data in his document that is deleted.

After deletion, the data is empty, but the object itself is still valid.

If the database allows it, the data can be restored by re-entering the data and executing save.

データの削除を行うことができます。

削除されるのは自身のドキュメントのデータです。

削除後はデータが空になりますが、このオブジェクト自体は有効になっています。

データベース上可能な場合、再度データを入れsaveを実行することでデータを復元できます。

Implementation

Future<void> delete() => throw UnimplementedError(
      "This feature is not implemented. Please replace it with actual documentation.",
    );