copyWith method

Taxform copyWith({
  1. String? docId,
  2. String? documentType,
  3. W2? w2,
})

Implementation

Taxform copyWith({String? docId, String? documentType, W2? w2}) {
  return Taxform(
      docId: docId ?? this.docId,
      documentType: documentType ?? this.documentType,
      w2: w2 ?? this.w2);
}