ParamBoolean constructor

ParamBoolean([
  1. bool val = false
])

Implementation

ParamBoolean( [bool val = false] ){
	_val = (val == true);
}