upsert abstract method

Future<void> upsert(
  1. DatabaseData data
)

Insert or update data in storage.

Insert data if it does not exist in the storage, otherwise update the existing data.

Implementation

Future<void> upsert(DatabaseData data);