copyWith method

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

Implementation

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