factory ParamSpec.bool({ bool required = false, bool? defaultValue, }) { return ParamSpec.internal( type: ParamType.bool, required: required, defaultValue: defaultValue, ); }