tryParseInt function
A wrapper around int.tryParse that accepts a null
argument.
Implementation
int? tryParseInt(String? value, {int? radix}) =>
value == null ? null : int.tryParse(value, radix: radix);
A wrapper around int.tryParse that accepts a null
argument.
int? tryParseInt(String? value, {int? radix}) =>
value == null ? null : int.tryParse(value, radix: radix);