setBool method

void setBool(
  1. bool value
)

Implementation

void setBool(bool value) {
  type = ARG_TYPE_BOOL;
  intValue = value ? 1 : 0;
}