kisBool method
检查字符串是否为布尔值
Implementation
bool kisBool() {
if (kisBlank()) {
return false;
}
return (this == 'true' || this == 'false');
}
检查字符串是否为布尔值
bool kisBool() {
if (kisBlank()) {
return false;
}
return (this == 'true' || this == 'false');
}