copyWith method

DepositSwitchAltCreateResponse copyWith({
  1. String? depositSwitchId,
  2. String? requestId,
})

Implementation

DepositSwitchAltCreateResponse copyWith(
    {String? depositSwitchId, String? requestId}) {
  return DepositSwitchAltCreateResponse(
      depositSwitchId: depositSwitchId ?? this.depositSwitchId,
      requestId: requestId ?? this.requestId);
}