Append bytes in v. Throws if len doesn't match v.length */
v
len
v.length
void pushUint8ListChecked(Uint8List v, int len) { if (v.length != len) { throw 'Binary data has incorrect size'; } pushArray(v); }