stringAsDigits function

List<int> stringAsDigits(
  1. String str
)

Implementation

List<int> stringAsDigits(String str) => str
    .split('')
    .where((c) => c.codeUnitAt(0) ^ 0x30 <= 9)
    .map(int.parse)
    .toList();