writeBoolList method

void writeBoolList(
  1. List<bool> v
)
inherited

Implementation

void writeBoolList(List<bool> v) {
  writeSize(v.length);
  v.forEach((i) => writeBool(i));
}