TransactionBuilder constructor
- TransactionBuilderAccount sourceAccount
Construct a transaction builder.
Implementation
TransactionBuilder(TransactionBuilderAccount sourceAccount) {
checkNotNull(sourceAccount, "sourceAccount cannot be null");
_mSourceAccount = sourceAccount;
_mOperations = List<Operation>();
}