copyWith method
Implementation
DepositSwitchGetRequest copyWith(
    {String? clientId, String? secret, String? depositSwitchId}) {
  return DepositSwitchGetRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      depositSwitchId: depositSwitchId ?? this.depositSwitchId);
}