TaxData constructor

TaxData(
  1. {int? id,
  2. String? title,
  3. int? value,
  4. String? description,
  5. int? status,
  6. bool isSelected = false}
)

Implementation

TaxData(
    {this.id,
    this.title,
    this.value,
    this.description,
    this.status,
    this.isSelected = false});