then<R> method

R? then<R>(
  1. FunctionCallback<R> F
)

Implementation

R? then<R>(FunctionCallback<R> F) {
  if (this) {
    return F();
  }
  return null;
}