didDeleteObjectWithID method

FutureOr<Response> didDeleteObjectWithID(
  1. dynamic 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.

Implementation

FutureOr<Response> didDeleteObjectWithID(dynamic id) {
  return Response.ok(null);
}