copyWith method

CreditRelayRemoveRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? relayToken,
})

Implementation

CreditRelayRemoveRequest copyWith(
    {String? clientId, String? secret, String? relayToken}) {
  return CreditRelayRemoveRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      relayToken: relayToken ?? this.relayToken);
}