CreateAccountOperation constructor

CreateAccountOperation(
  1. String destination,
  2. String startingBalance
)

Implementation

CreateAccountOperation(String destination, String startingBalance) {
  this._destination = checkNotNull(destination, "destination cannot be null");
  this._startingBalance =
      checkNotNull(startingBalance, "startingBalance cannot be null");
}