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;
}