tryParseInt function

int? tryParseInt(
  1. dynamic value
)

Implementation

int? tryParseInt(var value) {
  return _parseInt(value, null);
}