Concatenates one or more byte arrays
@param {List
static Uint8List concat(List<Uint8List> bytes) { String hex = ''; bytes.forEach((v) { hex += HEX.encode(v); }); return AppHelpers.hexToBytes(hex); }