copyWithWrapped method

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

Implementation

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