stringToInt function

int stringToInt(
  1. dynamic v
)

Implementation

int stringToInt(dynamic v) {
  return stringToNullableInt(v) ?? 0;
}