fromJSONWithBody static method

Deposit fromJSONWithBody(
  1. TxBodyJSONMessages data
)

Implementation

static Deposit fromJSONWithBody(TxBodyJSONMessages data) {
  return Deposit(data.proposal_id, data.depositor,
      CoinsExtensions.fromJSON(data.amount));
}