Executed after a list of objects has been fetched.
By default, returns Response.ok
with the encoded list of founds objects (which may be the empty list).
Source
Future<Response> didFindObjects(List<InstanceType> objects) async { return new Response.ok(objects); }