Executed after an object was deleted.
By default, returns Response.ok with no response body. You may override this method to provide some other behavior.
Source
FutureOr<Response> didDeleteObjectWithID(dynamic id) {
return new Response.ok(null);
}