WithdrawReply constructor

WithdrawReply({
  1. String? txHash,
})

Implementation

factory WithdrawReply({
  $core.String? txHash,
}) {
  final $result = create();
  if (txHash != null) {
    $result.txHash = txHash;
  }
  return $result;
}