fromJSON static method

TxBody fromJSON(
  1. TxBodyJSON data
)

Implementation

static TxBody fromJSON(TxBodyJSON data) {
  return TxBody(data.messages, data.memo, double.parse(data.timeout_height));
}