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