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