decode method

String decode(
  1. List<int> ids
)

Implementation

String decode(List<int> ids) {
  return String.fromCharCodes(ids.map((e) => e & 0xFF));
}