parseInt function

int? parseInt(
  1. dynamic v
)

Implementation

int? parseInt(v) {
  return int.tryParse(v.toString());
}