boolTryParse property

bool boolTryParse

Implementation

bool get boolTryParse {
  if (this == null || this!.isEmpty) return false;
  if (bool.tryParse(this!) == null) return false;
  return true;
}