DaoWithdrawPhase1 constructor
Implementation
factory DaoWithdrawPhase1({
Cell? depositCell,
$core.String? changeAddress,
}) {
final _result = create();
if (depositCell != null) {
_result.depositCell = depositCell;
}
if (changeAddress != null) {
_result.changeAddress = changeAddress;
}
return _result;
}