decode method

String decode(
  1. List<int> l
)

Implementation

String decode(List<int> l) => l.map((i) => itos[i] ?? '').join('');