copyWith method

IdentityVerificationGetRequest copyWith({
  1. String? identityVerificationId,
  2. String? secret,
  3. String? clientId,
})

Implementation

IdentityVerificationGetRequest copyWith(
    {String? identityVerificationId, String? secret, String? clientId}) {
  return IdentityVerificationGetRequest(
      identityVerificationId:
          identityVerificationId ?? this.identityVerificationId,
      secret: secret ?? this.secret,
      clientId: clientId ?? this.clientId);
}