PathPaymentStrictSendOperationBuilder constructor

PathPaymentStrictSendOperationBuilder(
  1. Asset _sendAsset,
  2. String _sendAmount,
  3. String destinationAccountId,
  4. Asset _destAsset,
  5. String _destMin,
)

Creates a PathPaymentStrictSendOperation builder.

Implementation

PathPaymentStrictSendOperationBuilder(this._sendAsset, this._sendAmount,
    String destinationAccountId, this._destAsset, this._destMin) {
  MuxedAccount? da = MuxedAccount.fromAccountId(destinationAccountId);
  checkNotNull(da, "invalid destinationAccountId");
  this._destination = da!;
}