UBillInfoResponse constructor

UBillInfoResponse({
  1. required String billId,
  2. required String paymentId,
  3. required List<String> warnings,
  4. required bool isValid,
  5. String? caseCode,
  6. String? companyCode,
  7. String? serviceType,
  8. String? checkDigit,
  9. String? companyName,
  10. String? serviceName,
  11. int? billAmount,
  12. int? yearDigit,
  13. int? periodCode,
  14. int? controlDigit1,
  15. int? controlDigit2,
})

Implementation

UBillInfoResponse({
  required this.billId,
  required this.paymentId,
  required this.warnings,
  required this.isValid,
  this.caseCode,
  this.companyCode,
  this.serviceType,
  this.checkDigit,
  this.companyName,
  this.serviceName,
  this.billAmount,
  this.yearDigit,
  this.periodCode,
  this.controlDigit1,
  this.controlDigit2,
});