fromData static method

Implementation

static CommunityPoolSpendProposal fromData(
    CommunityPoolSpendProposalDataArgs data) {
  return CommunityPoolSpendProposal(data.title, data.description,
      data.recipient, CoinsExtensions.fromData(data.amount));
}