DaoWithdrawPhase1 constructor

DaoWithdrawPhase1({
  1. Cell? depositCell,
  2. String? changeAddress,
})

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