tryCastToBool method
Implementation
bool? tryCastToBool() {
if (this == null) {
return null;
}
return this!.value.tryCastToBool();
}
bool? tryCastToBool() {
if (this == null) {
return null;
}
return this!.value.tryCastToBool();
}