copyWithWrapped method

CreditEmployerVerification copyWithWrapped({
  1. Wrapped<String?>? name,
})

Implementation

CreditEmployerVerification copyWithWrapped({Wrapped<String?>? name}) {
  return CreditEmployerVerification(
      name: (name != null ? name.value : this.name));
}