dataWedgeBool function

String dataWedgeBool(
  1. bool value
)

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';
}