toInt method Null safety
Truncates the double value and returns the int
Returns null if the double value is null
Implementation
int? toInt() => _value?.toInt();
Truncates the double value and returns the int
Returns null if the double value is null
int? toInt() => _value?.toInt();