copyWith method
Implementation
PaystubDeduction copyWith({String? type, bool? isPretax, double? total}) {
return PaystubDeduction(
type: type ?? this.type,
isPretax: isPretax ?? this.isPretax,
total: total ?? this.total);
}
PaystubDeduction copyWith({String? type, bool? isPretax, double? total}) {
return PaystubDeduction(
type: type ?? this.type,
isPretax: isPretax ?? this.isPretax,
total: total ?? this.total);
}