copyWith method
Implementation
CreditPayStubEmployer copyWith(
{CreditPayStubAddress? address, String? name}) {
return CreditPayStubEmployer(
address: address ?? this.address, name: name ?? this.name);
}
CreditPayStubEmployer copyWith(
{CreditPayStubAddress? address, String? name}) {
return CreditPayStubEmployer(
address: address ?? this.address, name: name ?? this.name);
}