tryParseBool function

bool? tryParseBool(
  1. dynamic value
)

Implementation

bool? tryParseBool(var value) {
  return _parseBool(value, null);
}