computeNumbersList function
convert a number digits to list of individual digits
Implementation
List<int> computeNumbersList(int hashCode) {
return hashCode
.toString()
.split('')
.map((e) => num.parse(e).toInt())
.toList();
}