writeBoolean static method

String writeBoolean(
  1. bool b
)

Implementation

static String writeBoolean(bool b) {
  return b ? "ff" : "00";
}