boolToInt static method

int boolToInt(
  1. bool value
)

Implementation

static int boolToInt(bool value) {
  return value ? 1 : 0;
}