boolAny static method

bool boolAny(
  1. dynamic val
)

不进行校验,都通过

Implementation

static bool boolAny(dynamic val) {
  return true;
}