writeBoolean static method

void writeBoolean(
  1. CompoundTag tag,
  2. String name,
  3. bool b
)

Implementation

static void writeBoolean(CompoundTag tag, String name, bool b) {
  tag.put(name, ByteTag.valueOf(b ? 1 : 0));
}