update method

Future<T> update(
  1. covariant UpdateBuilder<T> builder
)

Update this entity using the provided builder and return the updated entity.

Implementation

Future<T> update(covariant UpdateBuilder<T> builder) => manager.update(id, builder);