update abstract method

Future update(
  1. List<T> items,
  2. P? param
)

Update a list of items

It takes the list of updated items.

param is used to parametrize the query (ex: user id, token).

param can be also used to distinguish between many update queries

Implementation

Future<dynamic> update(List<T> items, P? param);