toBool method

bool toBool()

Converts the string to boolean.

'true' -> true 'false' -> false

Implementation

bool toBool() => this == 'true';