PaystubDeduction constructor

PaystubDeduction({
  1. required String? type,
  2. required bool? isPretax,
  3. required double? total,
})

Implementation

PaystubDeduction({
  required this.type,
  required this.isPretax,
  required this.total,
});