DaoWithdrawPhase2 constructor
Implementation
factory DaoWithdrawPhase2({
Cell? depositCell,
Cell? withdrawingCell,
$fixnum.Int64? amount,
}) {
final $result = create();
if (depositCell != null) {
$result.depositCell = depositCell;
}
if (withdrawingCell != null) {
$result.withdrawingCell = withdrawingCell;
}
if (amount != null) {
$result.amount = amount;
}
return $result;
}