Taxform constructor

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

Implementation

Taxform({
  this.docId,
  required this.documentType,
  this.w2,
});