baseW static method

List<int> baseW(
  1. Uint8List msg,
  2. List<int> destination
)

Converts message to base w (convenience overload)

Implementation

static List<int> baseW(Uint8List msg, List<int> destination) {
  return baseW_(msg, destination, 0, destination.length);
}