copyWithWrapped method
CreditPayStubEmployer
copyWithWrapped({
- Wrapped<
CreditPayStubAddress> ? address, - Wrapped<
String?> ? name,
Implementation
CreditPayStubEmployer copyWithWrapped(
{Wrapped<CreditPayStubAddress>? address, Wrapped<String?>? name}) {
return CreditPayStubEmployer(
address: (address != null ? address.value : this.address),
name: (name != null ? name.value : this.name));
}