Future<Response> didDeleteObjectWithID(id)

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

Future<Response> didDeleteObjectWithID(dynamic id) async {
  return new Response.ok(null);
}