update method

Future<T> update(
  1. T model
)

Update a model in the repository

The model is updated with the new data

Implementation

Future<T> update(final T model) {
  throw UnimplementedError();
}