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