Future<Response> didUpdateObject(InstanceType object)

Executed after an object was updated.

By default, returns Response.ok with the encoded, updated object. You may override this method to provide some other behavior.

Source

Future<Response> didUpdateObject(InstanceType object) async {
  return new Response.ok(object);
}