isTrue static method
Implementation
static bool isTrue(dynamic value) {
if (value == "1" || value == 1 || value == "true" || value == true) {
return true;
}
return false;
}
static bool isTrue(dynamic value) {
if (value == "1" || value == 1 || value == "true" || value == true) {
return true;
}
return false;
}