toIntOrNull method

int? toIntOrNull({
  1. int? radix,
})

Implementation

int? toIntOrNull({int? radix}) => int.tryParse(this, radix: radix);