toJson method

Json toJson()

Implementation

Json toJson() {
  return {
    'recipient': recipient,
    'amount': amount.toJson(),
    'token': token.toJson(),
    'fee': feeInfo?.toJson(),
    'memo': memo,
  };
}