Runs function and lets callers handle any thrown errors.
function
Future<void> execute(Future<void> Function() function) { return function(); }