parseBool static method

bool parseBool(
  1. dynamic text
)

Implementation

static bool parseBool(dynamic text){
  if(text.toString().compareTo("1")==0 || text.toString().compareTo("true")==0){
    return true;
  }
  return false;
}