tryToInt method

int? tryToInt()

Converts to int without throwing, mirroring Convert.tryToInt.

Implementation

int? tryToInt() =>
    ConvertObjectImpl.tryToInt(_value, defaultValue: _defaultValue as int?);