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