then method

bool then(
  1. bool action()
)

Implementation

bool then(bool Function() action) {
  if (this) {
    return action();
  }
  return this;
}