dataWedgeBool function
Converts a boolean value to the string format expected by DataWedge.
DataWedge expects 'true' or 'false' (lowercase strings) for boolean parameters.
Implementation
String dataWedgeBool(bool value) {
return value ? 'true' : 'false';
}