noop<T> static method

Result<T?> noop<T>()

Implementation

static Result<T?> noop<T>() {
  return _Result<T?>(null, ResultType.cancelled, null);
}