copyWith method

DepositSwitchGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? depositSwitchId,
})

Implementation

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