copyWith method

Credit1099Filer copyWith({
  1. CreditPayStubAddress? address,
  2. String? name,
  3. String? tin,
  4. String? type,
})

Implementation

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