toWords method

List<int> toWords(
  1. List<int> bytes
)

Implementation

List<int> toWords(List<int> bytes) {
  return convert(bytes, 8, 5, true);
}