formatBoolean static method

String formatBoolean(
  1. bool value
)

Implementation

static String formatBoolean(bool value)
{
  return value ? "On" : "Off";
}