QueryDelegatorWithdrawAddressResponse constructor

QueryDelegatorWithdrawAddressResponse({
  1. String? withdrawAddress,
})

Implementation

factory QueryDelegatorWithdrawAddressResponse({
  $core.String? withdrawAddress,
}) {
  final _result = create();
  if (withdrawAddress != null) {
    _result.withdrawAddress = withdrawAddress;
  }
  return _result;
}