Integer.fromString constructor
- String s
Implementation
Integer.fromString(String s) {
final f = double.parse(s);
_value = _clampTo32Bit(f.toInt());
}
Integer.fromString(String s) {
final f = double.parse(s);
_value = _clampTo32Bit(f.toInt());
}