writeBool method

void writeBool(
  1. bool v
)
inherited

Implementation

void writeBool(bool v) => commit(1).setInt8(0, v ? 1 : 0);