copyWith method

OktaVerificationDTO copyWith({
  1. String? verification,
})

Implementation

OktaVerificationDTO copyWith({String? verification}) {
  return OktaVerificationDTO(verification: verification ?? this.verification);
}