getInt function

int getInt(
  1. String id
)

Implementation

int getInt(String id) {
  return id.codeUnits.reduce((a, b) => a + b);
}