copyWith method

CreditPayStubEmployer copyWith({
  1. CreditPayStubAddress? address,
  2. String? name,
})

Implementation

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