decode static method

TableUpdate decode(
  1. BsatnDecoder decoder
)

Implementation

static TableUpdate decode(BsatnDecoder decoder) {
  final tableName = decoder.readString();
  final rows = decoder.readList(() => TableUpdateRows.decode(decoder));
  return TableUpdate(tableName: tableName, rows: rows);
}