decode static method
Implementation
static TransactionUpdateLightMessage decode(BsatnDecoder decoder) {
final requestId = decoder.readU32();
final tableUpdates = decoder.readList(() => TableUpdate.decode(decoder));
return TransactionUpdateLightMessage(
requestId: requestId,
tableUpdates: tableUpdates,
);
}