hexListToNumberList method

List<int> hexListToNumberList(
  1. List<String> codes
)

Implementation

List<int> hexListToNumberList(List<String> codes) =>
    codes.map((e) => hexToNumber(e)).toList();