DaoWithdrawPhase2 constructor

DaoWithdrawPhase2({
  1. Cell? depositCell,
  2. Cell? withdrawingCell,
  3. Int64? amount,
})

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