noop top-level property

OperationFn<void> noop
getter/setter pair

A no-operation, simply immediately returning a Future to null.

Implementation

OperationFn<void> noop = (Database db) {
  return Future.value(null);
};