copyWith method

EmploymentVerificationGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? accessToken,
})

Implementation

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