writeBool function

String writeBool(
  1. bool v
)

Implementation

String writeBool(final bool v) {
  return v ? 'true' : 'false';
}