copyWith method
Credit1099Filer
copyWith({
- CreditPayStubAddress? address,
- String? name,
- String? tin,
- 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);
}