Future<Response> didNotFindObjectToUpdateWithID(id)

Executed after an object not found during an update query.

By default, returns Response.notFound. You may override this method to provide some other behavior.

Source

Future<Response> didNotFindObjectToUpdateWithID(dynamic id) async {
  return new Response.notFound();
}